We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 726601f commit d1d2c62Copy full SHA for d1d2c62
.github/workflows/ci.yml
@@ -0,0 +1,25 @@
1
+name: Run CI jobs
2
+on: [push, pull_request]
3
+
4
+jobs:
5
+ lint:
6
+ runs-on: ubuntu-latest
7
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ - uses: actions/setup-node@v3
11
+ with:
12
+ node-version: '22'
13
+ - run: npm install
14
+ - run: npm run lint
15
16
+ test:
17
18
19
20
21
22
23
24
25
+ - run: npm run test
.github/workflows/lint.yml
0 commit comments