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 96ac3d1Copy full SHA for 96ac3d1
.github/workflows/gh-pages.yml
@@ -11,6 +11,23 @@ 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
+ - name: Install dependencies
27
+ run: pnpm install --frozen-lockfile
28
+ - name: Lint
29
+ run: pnpm run lint
30
+
31
build:
32
runs-on: ubuntu-latest
33
steps:
@@ -29,8 +46,6 @@ jobs:
46
static_site_generator: gatsby
47
- name: Install dependencies
48
run: pnpm install --frozen-lockfile
- - name: Lint
- run: pnpm run lint
34
49
- name: Build
35
50
run: pnpm run build
36
51
- name: Upload artifact
0 commit comments