From 7708f12fa6ff96673242f43798eecbf1ae78590b Mon Sep 17 00:00:00 2001 From: Zach Hammer Date: Tue, 27 Aug 2024 15:53:46 -0400 Subject: [PATCH] chore: fix more ci workflows --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b9a36dc..d014870 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 }} @@ -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 }} @@ -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 @@ -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