We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1cdb0a commit 0324ebdCopy full SHA for 0324ebd
1 file changed
.github/workflows/test.yml
@@ -33,7 +33,6 @@ jobs:
33
node-version:
34
- 16
35
- 14
36
- - 12
37
name: Node.js ${{ matrix.node-version }} Quick
38
steps:
39
- name: Checkout the repository
@@ -51,3 +50,24 @@ jobs:
51
50
run: pnpm install --frozen-lockfile --ignore-scripts
52
- name: Run unit tests
53
run: pnpm unit
+ 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
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
+
0 commit comments