Skip to content

Add notion-automations-sync example #25

Add notion-automations-sync example

Add notion-automations-sync example #25

Workflow file for this run

name: Pull Request
permissions:
contents: read
on:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- name: Setup env files for type generation
run: |
for dir in examples/*/; do
[ -f "$dir/.env.example" ] && cp "$dir/.env.example" "$dir/.env"
done
- run: npm ci
- run: npm run lint:check
- run: npm run typecheck