Skip to content

upgrade(deps): update react monorepo to v19.0.0 #417

upgrade(deps): update react monorepo to v19.0.0

upgrade(deps): update react monorepo to v19.0.0 #417

Workflow file for this run

name: CI
on:
pull_request:
types:
- opened
- reopened
- synchronize
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22.x'
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- name: Install dependencies
run: pnpm install
- name: Lint source code
run: pnpm lint
- name: Build app for Renovate PRs
if: startsWith(github.head_ref, 'renovate/')
run: pnpm build
env:
NOTION_DATABASE_ID: ${{ secrets.NOTION_DATABASE_ID }}
NOTION_TOKEN: ${{ secrets.NOTION_TOKEN }}