build(deps-dev): bump expect from 1.20.2 to 29.7.0 #133
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: CI | |
on: [push, pull_request] | |
jobs: | |
lint: | |
name: Code style | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 14.x | |
- name: Install dependencies | |
run: npm install | |
- name: Check code style | |
run: npm run lint | |
test: | |
name: Tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [10.x, 12.x, 14.x, 16.x] | |
react-version: ['16', '17'] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Install Node.js ${{matrix.node-version}} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{matrix.node-version}} | |
- name: Install dependencies | |
run: npm install | |
- name: Install React ${{matrix.react-version}} | |
if: matrix.react-version != '17' | |
run: npm install react@${{matrix.react-version}} react-dom@${{matrix.react-version}} react-test-renderer@${{matrix.react-version}} | |
- name: Run tests | |
run: npm run tests-only |