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 d5f51ba commit 0b23999Copy full SHA for 0b23999
.github/workflows/tests.yml
@@ -0,0 +1,28 @@
1
+name: Unit tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout code
17
+ uses: actions/checkout@v3
18
19
+ - name: Setup Node.js
20
+ uses: actions/setup-node@v3
21
+ with:
22
+ node-version: '22'
23
24
+ - name: Install dependencies
25
+ run: npm install
26
27
+ - name: Run tests
28
+ run: npm test
0 commit comments