We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abb4c4f commit 39a0bc8Copy full SHA for 39a0bc8
1 file changed
.github/workflows/main.yml
@@ -23,3 +23,23 @@ jobs:
23
run: npm install
24
- name: Lint
25
run: npm run lint
26
+ test:
27
+ runs-on: ubuntu-latest
28
+ timeout-minutes: 360
29
+ strategy:
30
+ matrix:
31
+ node-version: [20.x]
32
+ steps:
33
+ - uses: actions/checkout@v6
34
+ with:
35
+ persist-credentials: false
36
+ - name: Use Node.js ${{ matrix.node-version }}
37
+ uses: actions/setup-node@v6
38
39
+ node-version: ${{ matrix.node-version }}
40
+ - name: Install
41
+ run: npm install
42
+ - name: Fetch test suites
43
+ run: npm run fetch-test-suites
44
+ - name: Run test with Node.js ${{ matrix.node-version }}
45
+ run: npm run test-node
0 commit comments