We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b903af commit 3e913e5Copy full SHA for 3e913e5
.github/workflows/lint.yml
.github/workflows/test.yml
@@ -8,6 +8,27 @@ on:
8
workflow_dispatch:
9
10
jobs:
11
+ lint:
12
+ runs-on: ubuntu-latest
13
+
14
+ steps:
15
+ - name: Checkout code
16
+ uses: actions/checkout@v3
17
18
+ - name: Set up Node.js
19
+ uses: actions/setup-node@v3
20
+ with:
21
+ node-version: '20'
22
+ cache: 'npm'
23
24
+ - name: Install dependencies
25
+ run: npm ci
26
27
+ - name: Run ESLint
28
+ run: npm run lint
29
30
+ - name: Run TypeScript compiler check
31
+ run: npm run build
32
test:
33
runs-on: ubuntu-latest
34
steps:
0 commit comments