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 7517d63 commit d133c40Copy full SHA for d133c40
.github/workflows/test.yml
@@ -0,0 +1,28 @@
1
+name: Check test are passing
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
11
+ strategy:
12
+ matrix:
13
+ node-version: [18.x]
14
15
+ steps:
16
+ - uses: actions/checkout@v3
17
18
+ - name: Use Node.js ${{ matrix.node-version }}
19
+ uses: actions/setup-node@v3
20
+ with:
21
+ node-version: ${{ matrix.node-version }}
22
+ cache: 'npm'
23
24
+ - name: Install dependencies
25
+ run: npm ci
26
27
+ - name: Run tests
28
+ run: npm test
0 commit comments