1
1
name : Test
2
- " on " :
3
- push : null
4
- pull_request : null
5
- env :
6
- FORCE_COLOR : 2
2
+ on :
3
+ push :
4
+ pull_request :
7
5
jobs :
8
6
full :
9
- name : Node.js 16 Full
7
+ name : Node.js 17 Full
10
8
runs-on : ubuntu-latest
11
9
steps :
12
10
- name : Checkout the repository
13
11
uses : actions/checkout@v2
12
+ - name : Install pnpm
13
+ uses : pnpm/action-setup@v2
14
+ with :
15
+ version : latest
14
16
- name : Install Node.js
15
17
uses : actions/setup-node@v2
16
18
with :
17
19
node-version : 17
20
+ cache : pnpm
18
21
- name : Install dependencies
19
- uses : bahmutov/npm- install@v1
22
+ run : pnpm install --frozen-lockfile --ignore-scripts
20
23
- name : Run tests
21
- run : yarn test
24
+ run : pnpm test
25
+ env :
26
+ FORCE_COLOR : 2
22
27
short :
23
28
runs-on : ubuntu-latest
24
29
strategy :
@@ -27,18 +32,44 @@ jobs:
27
32
- 16
28
33
- 14
29
34
- 12
30
- - 10
31
35
name : Node.js ${{ matrix.node-version }} Quick
32
36
steps :
33
37
- name : Checkout the repository
34
38
uses : actions/checkout@v2
39
+ - name : Install pnpm
40
+ uses : pnpm/action-setup@v2
41
+ with :
42
+ version : latest
35
43
- name : Install Node.js ${{ matrix.node-version }}
36
44
uses : actions/setup-node@v2
37
45
with :
38
46
node-version : ${{ matrix.node-version }}
47
+ cache : pnpm
39
48
- name : Install dependencies
40
- uses : bahmutov/npm-install@v1
49
+ run : pnpm install --frozen-lockfile --ignore-scripts
50
+ - name : Run unit tests
51
+ run : pnpm unit
52
+ env :
53
+ FORCE_COLOR : 2
54
+ old :
55
+ runs-on : ubuntu-latest
56
+ name : Node.js 10 Quick
57
+ steps :
58
+ - name : Checkout the repository
59
+ uses : actions/checkout@v2
60
+ - name : Install pnpm
61
+ uses : pnpm/action-setup@v1
41
62
with :
42
- install-command : yarn --frozen-lockfile --ignore-engines
63
+ version : 3
64
+ env :
65
+ ACTIONS_ALLOW_UNSECURE_COMMANDS : true
66
+ - name : Install Node.js 10
67
+ uses : actions/setup-node@v2
68
+ with :
69
+ node-version : 10
70
+ - name : Install dependencies
71
+ run : pnpm install --frozen-lockfile --ignore-scripts
43
72
- name : Run unit tests
44
- run : npx jest
73
+ run : pnpm unit
74
+ env :
75
+ FORCE_COLOR : 2
0 commit comments