File tree Expand file tree Collapse file tree 4 files changed +8383
-7752
lines changed Expand file tree Collapse file tree 4 files changed +8383
-7752
lines changed Original file line number Diff line number Diff line change @@ -13,15 +13,18 @@ jobs:
13
13
14
14
steps :
15
15
- uses : actions/checkout@v1
16
+ - uses : pnpm/action-setup@v2
17
+ with :
18
+ version : 8
16
19
- uses : actions/setup-node@v1
17
20
with :
18
21
node-version : ' 16.x'
19
22
- name : Install
20
- run : yarn install
23
+ run : pnpm install
21
24
- name : Linting
22
- run : yarn lint:js
25
+ run : pnpm lint:js
23
26
- name : Test
24
- run : yarn test --coverage
27
+ run : pnpm run test --coverage
25
28
26
29
integration_tests :
27
30
name : Integration Tests
@@ -33,12 +36,15 @@ jobs:
33
36
34
37
steps :
35
38
- uses : actions/checkout@v1
39
+ - uses : pnpm/action-setup@v2
40
+ with :
41
+ version : 8
36
42
- uses : actions/setup-node@v1
37
43
with :
38
44
node-version : ' 16.x'
39
45
- name : Install
40
- run : yarn install
46
+ run : pnpm install
41
47
- name : Test
42
48
env :
43
49
EMBER_VERSION : ${{ matrix.ember_version }}
44
- run : yarn test:integration
50
+ run : pnpm run test:integration
Original file line number Diff line number Diff line change 39
39
"devDependencies" : {
40
40
"@types/chalk" : " ^2.2.0" ,
41
41
"@types/common-tags" : " ^1.8.0" ,
42
+ "@types/node" : " ^20.11.5" ,
42
43
"@typescript-eslint/eslint-plugin" : " ^2.34.0" ,
43
44
"@typescript-eslint/parser" : " ^2.34.0" ,
44
45
"babel-plugin-htmlbars-inline-precompile" : " ^3.0.1" ,
You can’t perform that action at this time.
0 commit comments