ember-attacher 1.3.0 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,221 +0,0 @@
1
- # This file was autogenerated by create-github-actions-setup-for-ember-addons.
2
- #
3
- # You can upgrade the GitHub Actions workflow to the latest blueprints used
4
- # by Create GitHub Actions setup for Ember Addons by running it again:
5
- #
6
- # - `yarn create github-actions-setup-for-ember-addons` if using yarn and
7
- # - `npm init github-actions-setup-for-ember-addons` if using NPM.
8
- #
9
- # See https://github.com/jelhan/create-github-actions-setup-for-ember-addon for
10
- # details.
11
- #
12
- # The following lines contain the configuration used in the last run. Please do
13
- # not change them. Doing so could break upgrade flow.
14
- #
15
- #$ browsers:
16
- #$ - Chrome
17
- #$ emberTryScenarios:
18
- #$ - scenario: ember-lts-3.12
19
- #$ - scenario: ember-lts-3.16
20
- #$ - scenario: ember-lts-3.20
21
- #$ - scenario: ember-release
22
- #$ - scenario: ember-beta
23
- #$ - scenario: ember-canary
24
- #$ allowedToFail: true
25
- #$ - scenario: ember-default
26
- #$ - scenario: ember-default-with-jquery
27
- #$ nodeVersion: '10'
28
- #$ packageManager: yarn
29
- #
30
-
31
- name: CI
32
-
33
- on:
34
- push:
35
- branches:
36
- - master
37
- pull_request:
38
-
39
- env:
40
- NODE_VERSION: '10'
41
-
42
- jobs:
43
- lint:
44
- name: Lint
45
- runs-on: ubuntu-latest
46
- steps:
47
- - uses: actions/checkout@v2
48
- with:
49
- fetch-depth: 1
50
-
51
- - uses: actions/setup-node@v2-beta
52
- with:
53
- node-version: '${{ env.NODE_VERSION }}'
54
-
55
- - name: Get package manager's global cache path
56
- id: global-cache-dir-path
57
- run: echo "::set-output name=dir::$(yarn cache dir)"
58
-
59
- - name: Cache package manager's global cache and node_modules
60
- id: cache-dependencies
61
- uses: actions/cache@v2
62
- with:
63
- path: |
64
- ${{ steps.global-cache-dir-path.outputs.dir }}
65
- node_modules
66
- key: ${{ runner.os }}-${{ matrix.node-version }}-${{
67
- hashFiles('**/yarn.lock'
68
- ) }}
69
- restore-keys: |
70
- ${{ runner.os }}-${{ matrix.node-version }}-
71
-
72
- - name: Install Dependencies
73
- run: yarn install --frozen-lockfile
74
- if: |
75
- steps.cache-dependencies.outputs.cache-hit != 'true'
76
-
77
- - name: Lint
78
- run: yarn lint
79
-
80
-
81
- test:
82
- name: Tests
83
- runs-on: ${{ matrix.os }}
84
- needs: lint
85
-
86
- strategy:
87
- matrix:
88
- os: [ubuntu-latest]
89
- browser: [Chrome]
90
-
91
- steps:
92
- - uses: actions/checkout@v2
93
- with:
94
- fetch-depth: 1
95
-
96
- - uses: actions/setup-node@v2-beta
97
- with:
98
- node-version: '${{ env.NODE_VERSION }}'
99
-
100
- - name: Get package manager's global cache path
101
- id: global-cache-dir-path
102
- run: echo "::set-output name=dir::$(yarn cache dir)"
103
-
104
- - name: Cache package manager's global cache and node_modules
105
- id: cache-dependencies
106
- uses: actions/cache@v2
107
- with:
108
- path: |
109
- ${{ steps.global-cache-dir-path.outputs.dir }}
110
- node_modules
111
- key: ${{ runner.os }}-${{ matrix.node-version }}-${{
112
- hashFiles('**/yarn.lock'
113
- ) }}
114
- restore-keys: |
115
- ${{ runner.os }}-${{ matrix.node-version }}-
116
-
117
- - name: Install Dependencies
118
- run: yarn install --frozen-lockfile
119
- if: |
120
- steps.cache-dependencies.outputs.cache-hit != 'true'
121
-
122
- - name: Test
123
- run: yarn test --launch ${{ matrix.browser }}
124
- timeout-minutes: 5
125
-
126
-
127
- floating-dependencies:
128
- name: Floating Dependencies
129
- runs-on: ${{ matrix.os }}
130
- needs: lint
131
-
132
- strategy:
133
- matrix:
134
- os: [ubuntu-latest]
135
- browser: [Chrome]
136
-
137
- steps:
138
- - uses: actions/checkout@v2
139
- with:
140
- fetch-depth: 1
141
-
142
- - uses: actions/setup-node@v2-beta
143
- with:
144
- node-version: '${{ env.NODE_VERSION }}'
145
-
146
- - name: Get package manager's global cache path
147
- id: global-cache-dir-path
148
- run: echo "::set-output name=dir::$(yarn cache dir)"
149
-
150
- - name: Cache package manager's global cache and node_modules
151
- id: cache-dependencies
152
- uses: actions/cache@v2
153
- with:
154
- path: |
155
- ${{ steps.global-cache-dir-path.outputs.dir }}
156
- node_modules
157
- key: ${{ runner.os }}-${{ matrix.node-version }}-floating-deps
158
- restore-keys: |
159
- ${{ runner.os }}-${{ matrix.node-version }}-
160
-
161
- - name: Install Dependencies
162
- run: yarn install --no-lockfile --non-interactive
163
-
164
- - name: Test
165
- run: yarn test --launch ${{ matrix.browser }}
166
- timeout-minutes: 5
167
-
168
-
169
- try-scenarios:
170
- name: Tests - ${{ matrix.ember-try-scenario }}
171
- runs-on: ubuntu-latest
172
- continue-on-error: true
173
- needs: test
174
-
175
- strategy:
176
- fail-fast: true
177
- matrix:
178
- ember-try-scenario: [
179
- ember-lts-3.12,
180
- ember-lts-3.16,
181
- ember-lts-3.20,
182
- ember-release,
183
- ember-default,
184
- ember-default-with-jquery
185
- ]
186
-
187
- steps:
188
- - uses: actions/checkout@v2
189
- with:
190
- fetch-depth: 1
191
-
192
- - uses: actions/setup-node@v2-beta
193
- with:
194
- node-version: '${{ env.NODE_VERSION }}'
195
-
196
- - name: Get package manager's global cache path
197
- id: global-cache-dir-path
198
- run: echo "::set-output name=dir::$(yarn cache dir)"
199
-
200
- - name: Cache package manager's global cache and node_modules
201
- id: cache-dependencies
202
- uses: actions/cache@v2
203
- with:
204
- path: |
205
- ${{ steps.global-cache-dir-path.outputs.dir }}
206
- node_modules
207
- key: ${{ runner.os }}-${{ matrix.node-version }}-${{
208
- hashFiles('**/yarn.lock'
209
- ) }}
210
- restore-keys: |
211
- ${{ runner.os }}-${{ matrix.node-version }}-
212
-
213
- - name: Install Dependencies
214
- run: yarn install --frozen-lockfile
215
- if: |
216
- steps.cache-dependencies.outputs.cache-hit != 'true'
217
-
218
- - name: Test
219
- env:
220
- EMBER_TRY_SCENARIO: ${{ matrix.ember-try-scenario }}
221
- run: node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO
@@ -1 +0,0 @@
1
- @import "ember-power-select";
@@ -1,5 +0,0 @@
1
- 'use strict';
2
-
3
- module.exports = {
4
-
5
- };
@@ -1,6 +0,0 @@
1
- /* eslint-env node */
2
- 'use strict';
3
-
4
- module.exports = function(/* environment, appConfig */) {
5
- return { };
6
- };