From c996417147cf9186f3b31f3616e8007f563e4200 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Tue, 27 Feb 2024 21:03:21 -0800 Subject: [PATCH] ci: require node v20 --- .github/workflows/ci.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b202fed..912cdc5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 @@ -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 @@ -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: