File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change 33
33
node-version :
34
34
- 16
35
35
- 14
36
- - 12
37
36
name : Node.js ${{ matrix.node-version }} Quick
38
37
steps :
39
38
- name : Checkout the repository
51
50
run : pnpm install --frozen-lockfile --ignore-scripts
52
51
- name : Run unit tests
53
52
run : pnpm unit
53
+ old :
54
+ runs-on : ubuntu-latest
55
+ name : Node.js 12 Quick
56
+ steps :
57
+ - name : Checkout the repository
58
+ uses : actions/checkout@v3
59
+ - name : Install pnpm
60
+ uses : pnpm/action-setup@v2
61
+ with :
62
+ version : 6
63
+ env :
64
+ ACTIONS_ALLOW_UNSECURE_COMMANDS : true
65
+ - name : Install Node.js 12
66
+ uses : actions/setup-node@v3
67
+ with :
68
+ node-version : 12
69
+ - name : Install dependencies
70
+ run : pnpm install --frozen-lockfile --ignore-scripts
71
+ - name : Run unit tests
72
+ run : pnpm unit
73
+
You can’t perform that action at this time.
0 commit comments