Skip to content

chore(deps-dev): bump core-js from 3.31.0 to 3.32.0 #1137

chore(deps-dev): bump core-js from 3.31.0 to 3.32.0

chore(deps-dev): bump core-js from 3.31.0 to 3.32.0 #1137

Workflow file for this run

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