Skip to content

Commit

Permalink
ci: .github/workflows/website.yml no longer uses node v16 because tha…
Browse files Browse the repository at this point in the history
…t isn't compatible with new deps. Use v18 and v20 instead
  • Loading branch information
gobengo committed Mar 19, 2024
1 parent 2ba345c commit bd4d6fa
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,17 @@ jobs:
check:
name: Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 18
- 20
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: ${{ matrix.node-version }}
- uses: bahmutov/npm-install@v1
- name: Run build
env:
Expand All @@ -42,7 +48,8 @@ jobs:
os:
- ubuntu-20.04
node-version:
- '16'
- 18
- 20
test_results_path:
# corresponds to playwright invocation/configuration
- packages/website/test-results
Expand Down Expand Up @@ -97,7 +104,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: 20
registry-url: https://registry.npmjs.org/
- uses: bahmutov/npm-install@v1
- name: Run build
Expand Down

0 comments on commit bd4d6fa

Please sign in to comment.