Add lint github workflow
Browse files
.github/workflows/lint-and-test.yml
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: Lint
|
2 |
+
on:
|
3 |
+
pull_request:
|
4 |
+
push:
|
5 |
+
branches:
|
6 |
+
- main
|
7 |
+
|
8 |
+
jobs:
|
9 |
+
lint:
|
10 |
+
runs-on: ubuntu-latest
|
11 |
+
timeout-minutes: 10
|
12 |
+
|
13 |
+
steps:
|
14 |
+
- uses: actions/checkout@v3
|
15 |
+
|
16 |
+
- uses: actions/setup-node@v3
|
17 |
+
with:
|
18 |
+
node-version: "20"
|
19 |
+
cache: "npm"
|
20 |
+
- run: |
|
21 |
+
npm install ci
|
22 |
+
- name: "Checking lint/format errors"
|
23 |
+
run: |
|
24 |
+
npm run lint
|
25 |
+
- name: "Checking type errors"
|
26 |
+
run: |
|
27 |
+
npm run check
|