Skip to content

chore(deps-dev): bump @babel/preset-env from 7.22.4 to 7.22.5 #1116

chore(deps-dev): bump @babel/preset-env from 7.22.4 to 7.22.5

chore(deps-dev): bump @babel/preset-env from 7.22.4 to 7.22.5 #1116

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 14
- 16
- 18
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 }}
# Node 14 still ships with npm@6 which doesn't install peerDeps by default.
- name: Install npm@7
if: matrix.node == '14'
run: npm install -g npm@7
- 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