Skip to content

Commit

Permalink
chore: fix more ci workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
zhammer committed Aug 27, 2024
1 parent 22280d7 commit 7708f12
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
node-version: ['>=20.8.0']
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -48,7 +48,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
node-version: ['>=20.8.0']
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -65,7 +65,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
node-version: '>=20.8.0'
cache: 'yarn'
# failures with peer dependencies will fail release
- run: yarn install
Expand All @@ -81,10 +81,10 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js 20.x
- name: Use Node.js >=20.8.0
uses: actions/setup-node@v3
with:
node-version: 20.x
node-version: '>=20.8.0'
cache: 'yarn'
- run: yarn install
- run: yarn tsc
Expand Down

0 comments on commit 7708f12

Please sign in to comment.