[Deps] update prop-types-exact
#15
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' | |
on: [pull_request, push] | |
permissions: | |
contents: read | |
jobs: | |
matrix: | |
runs-on: ubuntu-latest | |
outputs: | |
latest: ${{ steps.set-matrix.outputs.requireds }} | |
minors: ${{ steps.set-matrix.outputs.optionals }} | |
steps: | |
- uses: ljharb/actions/node/matrix@main | |
id: set-matrix | |
with: | |
versionsAsRoot: true | |
type: majors | |
preset: '>= 4' # fixme: `npm run react` fails in node 0.8; babel-register for tests fails < node 4 | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: ljharb/actions/node/build@main | |
with: | |
build-command: npm run test:prepare | |
- name: 'cache build output' | |
uses: actions/cache/save@v4 | |
with: | |
path: | | |
build-test/ | |
key: build-output-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }} | |
latest: | |
needs: [build, matrix] | |
name: 'majors' | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: ${{ fromJson(needs.matrix.outputs.latest) }} | |
react: | |
- 16 | |
- 15 | |
- 15.4 | |
- 0.14 | |
# - 0.13 # tests fail currently | |
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 }} | |
skip-ls-check: true | |
- name: 'restore build output' | |
uses: actions/cache/restore@v4 | |
with: | |
path: | | |
build-test/ | |
key: build-output-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }} | |
- run: npm run react | |
name: 'install react ${{ matrix.react }}' | |
env: | |
REACT: ${{ matrix.react }} | |
- uses: codecov/codecov-action@v3.1.5 | |
node: | |
name: 'node' | |
needs: [latest] | |
runs-on: ubuntu-latest | |
steps: | |
- run: true |