Skip to content

fix: upgrade react from 18.2.0 to 18.3.1 #59

fix: upgrade react from 18.2.0 to 18.3.1

fix: upgrade react from 18.2.0 to 18.3.1 #59

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: echo "NODE_OPTIONS=--openssl-legacy-provider" >> $GITHUB_ENV
if: ${{ matrix.node-version == '18.x' }}
- run: npm run test:coverage
- run: echo "NODE_OPTIONS=" >> $GITHUB_ENV