chore(deps-dev): bump glob from 10.3.1 to 10.3.3 #1132
Workflow file for this run
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] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: | |
- 16 | |
- 18 | |
- 20 | |
react: [16, 17] | |
name: build (${{ matrix.node }} w/ React ${{ matrix.react }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Install React v${{ matrix.react }} | |
run: npm i react@${{ matrix.react }} react-dom@${{ matrix.react }} | |
- name: Install React 16 Enzyme adapter | |
if: matrix.react == '16' | |
run: | | |
npm remove @wojtekmaj/enzyme-adapter-react-17 | |
npm install enzyme-adapter-react-16 | |
- name: Run tests on React 16 | |
if: matrix.react == '16' | |
run: REACT_VERSION=16 npm test | |
- name: Run tests on React 17 | |
if: matrix.react == '17' | |
run: npm test |