We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9be8eb5 commit 623ac1aCopy full SHA for 623ac1a
.github/workflows/gh-pages.yml
@@ -4,6 +4,9 @@ on:
4
push:
5
branches:
6
- "main"
7
+ paths:
8
+ - "apps/website/**"
9
+ - ".github/workflows/gh-pages.yml"
10
11
jobs:
12
# Build job
@@ -16,14 +19,14 @@ jobs:
16
19
- name: Setup Node.js
17
20
uses: actions/setup-node@v5
18
21
with:
- node-version: lts
22
+ node-version-file: ".nvmrc"
23
cache: "yarn"
24
25
- name: Setup Turbo and Install dependencies
26
run: |
27
npx -y turbo prune website;
28
cd out;
- yarn install --frozen-lockfile;
29
+ yarn install --immutable
30
31
- name: Build static files
32
id: build
0 commit comments