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 a7509dc commit 0c597a9Copy full SHA for 0c597a9
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,18 @@
1
+name: Run Tests
2
+on:
3
+ push:
4
+ branches:
5
+ - 'main'
6
+ pull_request:
7
+jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v5
12
+ - uses: actions/setup-node@v6
13
+ with:
14
+ node-version: '24.x'
15
+ registry-url: 'https://registry.npmjs.org'
16
+ - run: npm ci
17
+ - run: npm run build
18
+ - run: npm run test
0 commit comments