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: