File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- main
7
- # Review gh actions docs if you want to further define triggers, paths, etc
8
- # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
9
7
10
8
jobs :
11
9
build :
12
10
name : Build Site
13
11
runs-on : ubuntu-latest
14
12
steps :
15
- - uses : actions/checkout@v4
13
+ - name : Checkout Repository
14
+ uses : actions/checkout@v4
16
15
with :
17
16
fetch-depth : 0
18
- - uses : actions/setup-node@v4
17
+
18
+ - name : Setup Node.js
19
+ uses : actions/setup-node@v4
19
20
with :
20
21
node-version : 18
21
22
cache : yarn
22
23
23
- - name : Install dependencies
24
- run : yarn install --frozen-lockfile
25
- - name : Build website
24
+ - name : Install Dependencies
25
+ run : yarn install
26
+ # You can also use `yarn install --immutable` if you're using Yarn 2+
27
+
28
+ - name : Build Website
26
29
run : yarn build
27
30
28
31
- name : Upload Build Artifact
You can’t perform that action at this time.
0 commit comments