We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46c6b5a commit 95c0de1Copy full SHA for 95c0de1
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,25 @@
1
+name: Test
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v4
14
15
+ - name: Setup Node.js
16
+ uses: actions/setup-node@v4
17
+ with:
18
+ node-version: 22
19
+ cache: npm
20
21
+ - name: Install dependencies
22
+ run: npm ci
23
24
+ - name: Run local checks
25
+ run: npm run check
0 commit comments