We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ca8bb6 commit a53e1acCopy full SHA for a53e1ac
.github/workflows/ci.yml
@@ -0,0 +1,19 @@
1
+name: CI Tests
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - name: Use Node.js Version 16
12
+ uses: actions/setup-node@v4
13
+ with:
14
+ node-version: 16
15
+ - name: Install Node.js dependencies
16
+ run: npm install
17
18
+ - name: Run jest tests
19
+ run: npm run test:ci
package.json
@@ -11,6 +11,7 @@
},
"scripts": {
"test": "jest",
+ "test:ci": "jest --ci",
"test:w": "jest --watch",
"check:tar": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz"
0 commit comments