Skip to content

Commit

Permalink
fix: pin version of node 20 to avoid vite bug
Browse files Browse the repository at this point in the history
The vite build was failing because of a bug in node v20.6.

I have pinned v20.5, as there seems to be an issue with
vite and node 20.6. This should be undone once the issue is resolved on
the node/vite side.
  • Loading branch information
kanej committed Sep 6, 2023
1 parent 65f4130 commit b9677c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 20]
node: [16, 18, 20.5]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
Expand Down

0 comments on commit b9677c1

Please sign in to comment.