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 2ea27af commit e8abdfaCopy full SHA for e8abdfa
.github/workflows/release_staging.yml
@@ -0,0 +1,44 @@
1
+name: release staging
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ coding-style:
10
+ name: Probe NodeJs - Code Style
11
+ runs-on: ubuntu-latest
12
+ timeout-minutes: 3
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - uses: actions/setup-node@v4
17
+ with:
18
+ node-version: latest
19
20
+ - run: |
21
+ make eslint
22
23
+ unit-tests:
24
+ name: Probe Node.js ${{ matrix.version }} - Unit tests
25
26
+ needs: coding-style
27
28
+ strategy:
29
+ fail-fast: false
30
+ matrix:
31
+ version:
32
+ - 18
33
+ - 20
34
+ - 21
35
+ - 22
36
37
38
39
40
41
+ node-version: ${{ matrix.version }}
42
43
44
+ make test
0 commit comments