upgrade(deps): update dependency @typescript-eslint/parser to v8.18.1 #429
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |