Skip to content

Commit

Permalink
Try updating build script to work
Browse files Browse the repository at this point in the history
It was failing because it couldn't find the `Array.prototype.at(index)` function. Maybe it needs a newer version of node or something.
  • Loading branch information
cypressf committed Aug 1, 2023
1 parent b9dc385 commit 8260222
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ jobs:
steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "19"

- name: Get yarn cache directory path
id: yarn-cache-dir-path
Expand All @@ -108,7 +108,7 @@ jobs:
- name: 🔨 Build
run: |
yarn install --frozen-lockfile
yarn install --immutable
yarn lint
yarn build
working-directory: frontend
Expand Down

0 comments on commit 8260222

Please sign in to comment.