Skip to content

Commit

Permalink
ci: require node v20
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson committed Feb 28, 2024
1 parent f94a83b commit c996417
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
- name: Start MySQL
run: sudo /etc/init.d/mysql start
- uses: actions/setup-node@v4
with:
node-version: 20
- uses: actions/checkout@v4
- run: npm install
- name: Initialize MySQL
Expand Down Expand Up @@ -48,7 +50,8 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: ${{ fromJson(needs.get-lts.outputs.active) }}
node-version: 20
# node-version: ${{ fromJson(needs.get-lts.outputs.active) }}
fail-fast: false
steps:
- run: sudo /etc/init.d/mysql start
Expand All @@ -65,7 +68,8 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
node-version: ${{ fromJson(needs.get-lts.outputs.active) }}
node-version: 20
# node-version: ${{ fromJson(needs.get-lts.outputs.active) }}
fail-fast: false
steps:
- name: Install & Start MySQL
Expand All @@ -88,7 +92,8 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
node-version: ${{ fromJson(needs.get-lts.outputs.active) }}
node-version: 20
# node-version: ${{ fromJson(needs.get-lts.outputs.active) }}
experimental: [true]
fail-fast: false
steps:
Expand Down

0 comments on commit c996417

Please sign in to comment.