We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0f0673 commit b138603Copy full SHA for b138603
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,29 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ test:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v6
18
19
+ - name: Setup Node
20
+ uses: actions/setup-node@v5
21
+ with:
22
+ node-version: '22'
23
+ cache: npm
24
25
+ - name: Install dependencies
26
+ run: npm ci
27
28
+ - name: Run smoke test
29
+ run: npm test
0 commit comments