[actions] further shard; update action deps #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Tests: node.js (0.x)' | |
on: [pull_request, push] | |
jobs: | |
matrix: | |
runs-on: ubuntu-latest | |
outputs: | |
stable: ${{ steps.set-matrix.outputs.requireds }} | |
unstable: ${{ steps.set-matrix.outputs.optionals }} | |
steps: | |
- uses: ljharb/actions/node/matrix@main | |
id: set-matrix | |
with: | |
versionsAsRoot: true | |
preset: '0.x' | |
stable: | |
needs: [matrix] | |
name: 'stable minors' | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: ${{ fromJson(needs.matrix.outputs.stable) }} | |
command: | |
- test:stock | |
- test:staging | |
- test:shams:corejs | |
- test:shams:getownpropertysymbols | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ljharb/actions/node/install@main | |
name: 'nvm install ${{ matrix.node-version }} && npm install' | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache-node-modules-key: node_modules-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }} | |
skip-ls-check: true | |
- run: npm run ${{ matrix.command }} | |
- uses: codecov/[email protected] | |
unstable: | |
needs: [matrix, stable] | |
name: 'unstable minors' | |
continue-on-error: true | |
if: ${{ !github.head_ref || !startsWith(github.head_ref, 'renovate') }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: ${{ fromJson(needs.matrix.outputs.unstable) }} | |
command: | |
- test:stock | |
- test:staging | |
- test:shams:corejs | |
- test:shams:getownpropertysymbols | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ljharb/actions/node/install@main | |
name: 'nvm install ${{ matrix.node-version }} && npm install' | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache-node-modules-key: node_modules-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }} | |
skip-ls-check: true | |
- run: npm run ${{ matrix.command }} | |
- uses: codecov/[email protected] | |
node: | |
name: 'node 0.x' | |
needs: [stable, unstable] | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo tests completed' |