Skip to content

chore: update NextJS peerDependency #1

chore: update NextJS peerDependency

chore: update NextJS peerDependency #1

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- main
- beta
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install Packages
run: yarn install
- name: Lint
run: yarn lint:ci
- name: Test
run: yarn test:ci
- name: Report coverage
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}