Skip to content

update example to React 18.2 #50

update example to React 18.2

update example to React 18.2 #50

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
ci:
name: "Lint and Test"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16.x"
cache: "yarn"
- run: yarn
- run: yarn package:build
- run: yarn lint
- run: yarn test:ci && yarn codecov --token=$CODECOV_TOKEN
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}