We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 285a632 commit 41917a7Copy full SHA for 41917a7
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,12 @@
1
+name: CI
2
+on: [push, pull_request]
3
+jobs:
4
+ test:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v4
8
+ - uses: actions/setup-node@v4
9
+ with: { node-version: 22 }
10
+ - run: npm ci
11
+ - run: npm test --if-present
12
+ - run: npm run lint --if-present
0 commit comments