diff --git a/.github/workflows/versions.yml b/.github/workflows/versions.yml index d941a7d0..63f944f7 100644 --- a/.github/workflows/versions.yml +++ b/.github/workflows/versions.yml @@ -173,9 +173,9 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-latest, macos-13] + os: [ubuntu-latest, windows-latest, macos-latest] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Setup node from node version file uses: ./ with: @@ -183,21 +183,6 @@ jobs: - name: Verify node run: __tests__/verify-node.sh 20 - version-file-dev-engines-array: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, windows-latest, macos-latest, macos-13] - steps: - - uses: actions/checkout@v4 - - name: Setup node from node version file - uses: ./ - with: - node-version-file: '__tests__/data/package-dev-engines-array.json' - - name: Verify node - run: __tests__/verify-node.sh 20 - version-file-volta: runs-on: ${{ matrix.os }} strategy: diff --git a/__tests__/data/package-dev-engines-array.json b/__tests__/data/package-dev-engines-array.json deleted file mode 100644 index a487e016..00000000 --- a/__tests__/data/package-dev-engines-array.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "engines": { - "node": "^19" - }, - "devEngines": { - "runtime": [ - { - "name": "bun", - "version": "^1" - }, - { - "name": "node", - "version": "^20" - } - ] - } -}