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 e6d259c commit b9e8041Copy full SHA for b9e8041
1 file changed
.github/workflows/ci.yml
@@ -42,3 +42,22 @@ jobs:
42
43
- name: Build project
44
run: npm run build
45
+
46
+ test:
47
+ name: Test
48
+ runs-on: ubuntu-latest
49
+ steps:
50
+ - name: Checkout code
51
+ uses: actions/checkout@v4
52
53
+ - name: Setup Node.js
54
+ uses: actions/setup-node@v4
55
+ with:
56
+ node-version: 20
57
+ cache: 'npm'
58
59
+ - name: Install dependencies
60
+ run: npm ci
61
62
+ - name: Run tests
63
+ run: npm test
0 commit comments