Skip to content

Bumping react versions, fixing some tests, adding some documentation #31

Bumping react versions, fixing some tests, adding some documentation

Bumping react versions, fixing some tests, adding some documentation #31

Workflow file for this run

name: Tests / Lint
on: [pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
name: Run tests with Node.js ${{ matrix.node-version }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn build
- run: yarn test
- run: yarn lint