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 83cd759 commit 62eaa2dCopy full SHA for 62eaa2d
.github/workflows/lint.yml .github/workflows/check.yml.github/workflows/lint.yml renamed to .github/workflows/check.yml
@@ -1,6 +1,8 @@
1
+name: Check
2
on: pull_request
3
jobs:
- lint:
4
+ build-type-check:
5
+ name: Build and Type Check
6
runs-on: ubuntu-latest
7
steps:
8
- uses: actions/checkout@v3
@@ -18,4 +20,15 @@ jobs:
18
20
restore-keys: ${{ runner.os }}-gatsby-build-
19
21
- run: npm run build
22
- run: npm run type-check
23
+
24
+ lint:
25
+ name: Lint
26
+ runs-on: ubuntu-latest
27
+ steps:
28
+ - uses: actions/checkout@v3
29
+ - uses: actions/setup-node@v3
30
+ with:
31
+ node-version: "18"
32
+ cache: npm
33
+ - run: npm ci
34
- run: npm run lint
0 commit comments