Skip to content

chore(release): 1.2.1 #24

chore(release): 1.2.1

chore(release): 1.2.1 #24

Workflow file for this run

name: Test
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
name: Linting
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
cache: "yarn"
- run: yarn install
- run: yarn lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
next: [13, 14]
node: [18, 20]
name: Test with Next.js ${{ matrix.next }} and Node.js ${{ matrix.node }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: "yarn"
- run: yarn install
- run: cd example && yarn install && yarn add next@${{ matrix.next }}
- run: yarn test