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 f7cccc9 commit 54ae961Copy full SHA for 54ae961
.github/workflows/tests.yaml
@@ -0,0 +1,26 @@
1
+name: Run Tests
2
+
3
+on:
4
+ pull_request:
5
+ branches: [master]
6
+ push:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
15
+ - name: Setup Node.js
16
+ uses: actions/setup-node@v4
17
+ with:
18
+ node-version: '22'
19
20
+ - name: Install dependencies
21
+ run: npm ci
22
23
+ - name: Run Vitest
24
+ run: npx vitest run
25
26
0 commit comments