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 f96ecbd commit 4af553fCopy full SHA for 4af553f
1 file changed
.github/workflows/deploy.yml
@@ -5,24 +5,23 @@ on:
5
branches:
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
10
jobs:
11
build:
12
name: Build CodeHarborHub
- permissions:
13
- contents: read
14
runs-on: ubuntu-latest
15
steps:
16
- uses: actions/checkout@v4
17
with:
18
fetch-depth: 0
19
- uses: actions/setup-node@v4
20
21
- node-version: 18
+ node-version: 20
22
cache: npm
23
24
- name: Install dependencies
25
- run: npm install --frozen-lockfile
+ run: npm ci
26
- name: Build website
27
run: npm run build
28
0 commit comments