Skip to content

Upgrade to Next.js 14 and use getPlatformProxy #47

Upgrade to Next.js 14 and use getPlatformProxy

Upgrade to Next.js 14 and use getPlatformProxy #47

Workflow file for this run

name: Checks
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
checks:
name: Check ${{ matrix.script }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
script: [lint, prettier, tsc, test] #
steps:
- name: Check out code
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: latest
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'pnpm'
- name: Install dependencies
run: |
pnpm install --frozen-lockfile
- name: ${{ matrix.script }}
run: pnpm run ${{ matrix.script }}