File tree 5 files changed +7337
-6378
lines changed
5 files changed +7337
-6378
lines changed Original file line number Diff line number Diff line change @@ -18,43 +18,45 @@ jobs:
18
18
19
19
strategy :
20
20
matrix :
21
- node-version : [12 .x, 14.x, 16. x]
21
+ node-version : [18 .x, 20, x]
22
22
os : [ubuntu, windows]
23
23
24
24
steps :
25
25
- uses : actions/checkout@v3
26
+ - uses : pnpm/action-setup@v4
26
27
- name : Install Node
27
28
uses : actions/setup-node@v3
28
29
with :
29
30
node-version : ${{ matrix.node-version }}
30
- cache : yarn
31
+ cache : pnpm
31
32
32
33
- name : Install Dependencies
33
- run : yarn install --frozen-lockfile
34
+ run : pnpm install --frozen-lockfile
34
35
35
36
- name : Lint
36
- run : yarn lint:js
37
+ run : pnpm lint:js
37
38
38
39
- name : Run Tests
39
- run : yarn test
40
+ run : pnpm test
40
41
41
42
floating :
42
43
name : " Floating Dependencies - Node.js ${{ matrix.node-version }}"
43
44
runs-on : ubuntu-latest
44
45
45
46
strategy :
46
47
matrix :
47
- node-version : [12 .x, 14.x, 16. x]
48
+ node-version : [18 .x, 20, x]
48
49
49
50
steps :
50
51
- uses : actions/checkout@v3
52
+ - uses : pnpm/action-setup@v4
51
53
- uses : actions/setup-node@v3
52
54
with :
53
55
node-version : ${{ matrix.node-version }}
54
- cache : yarn
56
+ cache : pnpm
55
57
56
58
- name : Install Dependencies
57
- run : yarn install --no-lockfile
59
+ run : pnpm install --no-lockfile
58
60
59
61
- name : Run Tests
60
- run : yarn test
62
+ run : pnpm test
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ Pinning solely to versioned releases should be preferred.
81
81
82
82
To run tests:
83
83
84
- ` npm test`
84
+ ` pnpm test`
85
85
86
86
### LICENSE
87
87
Original file line number Diff line number Diff line change 60
60
"ember-addon" : {
61
61
"configPath" : " tests/dummy/config"
62
62
},
63
- "readmeFile" : " README.md"
63
+ "readmeFile" : " README.md" ,
64
+ "packageManager" : " pnpm@9.11.0"
64
65
}
You can’t perform that action at this time.
0 commit comments