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 b28e014 commit 4560bd9Copy full SHA for 4560bd9
.github/workflows/test.yml
@@ -1,20 +1,22 @@
1
name: Test
2
-on:
+"on":
3
push:
4
branches:
5
- main
6
pull_request:
7
- types: [opened, synchronize]
8
-
+ types:
+ - opened
9
+ - synchronize
10
jobs:
11
test_matrix:
12
runs-on: ubuntu-latest
13
strategy:
14
matrix:
- node_version: ["12", "14"]
15
+ node_version:
16
+ - "12"
17
+ - "14"
18
steps:
- - uses: actions/checkout@v2
19
+ - uses: actions/checkout@v3
20
- name: Use Node.js ${{ matrix.node_version }}
21
uses: actions/setup-node@v2
22
with:
@@ -28,9 +30,6 @@ jobs:
28
30
${{ runner.os }}-node-
29
31
- run: npm ci
32
- run: npm test
- # The "test" step can be required in branch protection and does not
33
- # change each time the test matrix changes.
34
test:
35
36
needs: test_matrix
0 commit comments