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 bfb1041 commit 24b7bd7Copy full SHA for 24b7bd7
.github/workflows/test.yml
@@ -0,0 +1,23 @@
1
+name: Tests
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ max-parallel: 1
10
+ matrix:
11
+ node-version: [ 22 ]
12
+ steps:
13
+ - name: Clone Repository
14
+ uses: actions/checkout@v4
15
+ - name: Setup Node version
16
+ uses: actions/setup-node@v4
17
+ with:
18
+ node-version: ${{ matrix.node-version }}
19
+ cache: 'npm'
20
+ - name: Install dependencies
21
+ run: npm ci
22
+ - name: Run tests
23
+ run: npm test
.npmignore
@@ -0,0 +1,5 @@
+test/
+CLAUDE.md
+*.log
+.gitignore
+.github/
0 commit comments