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 36f162c commit 0f7f5b5Copy full SHA for 0f7f5b5
.github/workflows/integration.yml
@@ -26,5 +26,26 @@ jobs:
26
cache: 'npm'
27
- run: npm i
28
- run: npm run build
29
- - run : npm run test
+
30
+ unit-test:
31
32
+ runs-on: ubuntu-latest
33
34
+ strategy:
35
+ matrix:
36
+ node-version: [18.x, 20.x, 22.x]
37
+ # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
38
39
+ steps:
40
+ - uses: actions/checkout@v4
41
+ - name: Use Node.js ${{ matrix.node-version }}
42
+ uses: actions/setup-node@v4
43
+ with:
44
+ node-version: ${{ matrix.node-version }}
45
+ cache: 'npm'
46
+ - run: npm i
47
+ - run: npm run test
48
49
50
51
# this is new build
0 commit comments