Skip to content

ci(deps): bump the github-actions group across 1 directory with 2 updates #28

ci(deps): bump the github-actions group across 1 directory with 2 updates

ci(deps): bump the github-actions group across 1 directory with 2 updates #28

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version: "22"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npm run format
- name: Lint
run: npm run lint
- name: Run tests with coverage
run: npm run coverage
- name: Build
run: npm run build