Commit 45e222e 1 parent 74c1f3e commit 45e222e Copy full SHA for 45e222e
File tree 1 file changed +13
-13
lines changed
1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change 8
8
runs-on : ubuntu-latest
9
9
strategy :
10
10
matrix :
11
- node-version : [18 .x, 20 .x]
11
+ node-version : [20 .x, 22 .x]
12
12
steps :
13
13
- uses : actions/checkout@v2
14
14
- name : Use Node.js ${{ matrix.node-version }}
15
15
uses : actions/setup-node@v1
16
16
with :
17
17
node-version : ${{ matrix.node-version }}
18
- - run : npm install -g yarn
19
- - name : yarn build
18
+ - run : npm install -g pnpm
19
+ - name : pnpm build
20
20
working-directory : .
21
21
run : |
22
- yarn
23
- yarn build
22
+ pnpm install
23
+ pnpm build
24
24
lint :
25
25
runs-on : ubuntu-latest
26
26
strategy :
@@ -32,12 +32,12 @@ jobs:
32
32
uses : actions/setup-node@v1
33
33
with :
34
34
node-version : ${{ matrix.node-version }}
35
- - run : npm install -g yarn
36
- - name : yarn build
35
+ - run : npm install -g pnpm
36
+ - name : pnpm build
37
37
working-directory : .
38
38
run : |
39
- yarn
40
- yarn lint
39
+ pnpm install
40
+ pnpm lint
41
41
test :
42
42
runs-on : ubuntu-latest
43
43
strategy :
@@ -49,10 +49,10 @@ jobs:
49
49
uses : actions/setup-node@v1
50
50
with :
51
51
node-version : ${{ matrix.node-version }}
52
- - run : npm install -g yarn
53
- - name : yarn build
52
+ - run : npm install -g pnpm
53
+ - name : pnpm build
54
54
working-directory : .
55
55
run : |
56
- yarn
57
- yarn test
56
+ pnpm install
57
+ pnpm test
58
58
You can’t perform that action at this time.
0 commit comments