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 8fb4f84 commit 239e7b1Copy full SHA for 239e7b1
1 file changed
.github/workflows/node-test-pull.yaml
@@ -1,21 +1,25 @@
1
-# Workflow intended to test PRs
+# Workflow intended to test PRs
2
3
-name: CI - Test
+name: CI - Test
4
5
-on:
+on:
6
pull_request:
7
-
+
8
jobs:
9
tests:
10
- runs-on: ubuntu-latest
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ node-version: [14.x, '${{ env.NODE_VERSION }}' ]
15
16
steps:
- - uses: actions/checkout@v3
- - name: Setup Node.js
- uses: actions/setup-node@v3
17
+ - uses: actions/checkout@v5
18
+ - name: Setup Node.js
19
+ uses: actions/setup-node@v6
20
with:
- node-version: '14'
- - name: Install Dependencies
- run: npm install
- - name: Test
21
- run: npm run test
+ node-version: ${{ matrix.node-version }}
22
+ - name: Install Dependencies
23
+ run: npm install
24
+ - name: Test
25
+ run: npm run test
0 commit comments