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 c9c0abf commit 09fd6f3Copy full SHA for 09fd6f3
.github/workflows/gh-pages.yml
@@ -11,6 +11,22 @@ permissions:
11
id-token: write
12
13
jobs:
14
+ lint:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
+ - uses: pnpm/action-setup@v3
20
+ with:
21
+ version: 9
22
+ - uses: actions/setup-node@v4
23
24
+ node-version: 20
25
+ cache: 'pnpm'
26
+ run: pnpm install --frozen-lockfile
27
+ - name: Lint
28
+ run: pnpm run lint
29
+
30
build:
31
runs-on: ubuntu-latest
32
steps:
@@ -29,8 +45,6 @@ jobs:
45
static_site_generator: gatsby
46
- name: Install dependencies
47
run: pnpm install --frozen-lockfile
- - name: Lint
33
- run: pnpm run lint
34
48
- name: Build
35
49
run: pnpm run build
36
50
- name: Upload artifact
0 commit comments