Skip to content

chore(release): 1.3.0 #31

chore(release): 1.3.0

chore(release): 1.3.0 #31

Workflow file for this run

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