We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d4733d commit 30a0a6cCopy full SHA for 30a0a6c
.github/workflows/ci.yml
@@ -0,0 +1,26 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
10
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-24.04
14
+ steps:
15
+ - name: Checkout code
16
+ uses: actions/checkout@v3
17
+ - name: Set up Node.js
18
+ uses: actions/setup-node@v3
19
+ with:
20
+ node-version: '22'
21
+ - name: Install dependencies
22
+ run: npm install
23
+ - name: Run lint
24
+ run: npm run lint
25
+ - name: Run tests
26
+ run: npm run test
.travis.yml
0 commit comments