Skip to content

wrangler yap

wrangler yap #4

Workflow file for this run

name: Lint and Format
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
jobs:
lint_format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run format
- run: npm run lint
continue-on-error: true