Skip to content

Make it work with Next.js 15.x #12

Make it work with Next.js 15.x

Make it work with Next.js 15.x #12

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses:
actions/checkout@v4
# will look at "packageManager" in package.json to know which pnpm version to use
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm lint
- run: pnpm test:coverage