Skip to content

Move React to peerDependencies. #36

Move React to peerDependencies.

Move React to peerDependencies. #36

Workflow file for this run

# This workflow will do a clean install of dependencies, cache/restore them, run tests across different versions of node
name: Node.js CI
on:
[push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm test