We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fe940d commit 513c7f6Copy full SHA for 513c7f6
.github/workflows/ci.yml
@@ -0,0 +1,33 @@
1
+name: CI
2
+permissions:
3
+ contents: read
4
+on: [pull_request]
5
+jobs:
6
+ lint:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - uses: actions/setup-node@v4
11
+ with:
12
+ node-version: 22
13
+ cache: 'npm'
14
+
15
+ - name: Install dependencies
16
+ run: npm ci
17
18
+ - name: Run Lint
19
+ run: npm run lint
20
+ tests:
21
22
23
24
25
26
27
28
29
30
31
32
+ - name: Run tests
33
+ run: npm test
0 commit comments