Skip to content

ci(workflows): bump checkout/setup-node to v5 and wrangler-action to v4 #134

ci(workflows): bump checkout/setup-node to v5 and wrangler-action to v4

ci(workflows): bump checkout/setup-node to v5 and wrangler-action to v4 #134

Workflow file for this run

name: CI
# Skip when only website/, docs, or markdown files change — those are
# either deployed by website-deploy.yml or have no impact on the package.
on:
pull_request:
branches: [main]
paths-ignore:
- "website/**"
- "docs/**"
- "**/*.md"
push:
branches: [main]
paths-ignore:
- "website/**"
- "docs/**"
- "**/*.md"
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run build