Skip to content

chore(deps): bump braces from 3.0.2 to 3.0.3 #28

chore(deps): bump braces from 3.0.2 to 3.0.3

chore(deps): bump braces from 3.0.2 to 3.0.3 #28

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]
node: [18, 20]
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