Skip to content

fix(runtime): pages are not editable when running in dev w/ NextJS 14.2 #799

fix(runtime): pages are not editable when running in dev w/ NextJS 14.2

fix(runtime): pages are not editable when running in dev w/ NextJS 14.2 #799

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
concurrency: ${{ github.workflow}}-${{ github.ref }}
jobs:
test:
name: Build and Test
timeout-minutes: 15
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Set up pnpm 8.x
uses: pnpm/action-setup@v2
with:
version: 8
- name: Set up Node.js environment
uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- name: Install dependencies
run: pnpm install --ignore-scripts
- name: Build
run: pnpm run build --filter=!./apps/**
- name: Test packages
run: pnpm run test
- name: Circular dependency check
continue-on-error: true
run: pnpm run madge