Skip to content

bump dependencies

bump dependencies #5

Workflow file for this run

name: Verify PR
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
verify:
name: Lint, Format and Build
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Prettier Check
run: npm run format:check
- name: Build
run: npm run build