Skip to content

Set GitHub Pages URL #1

Set GitHub Pages URL

Set GitHub Pages URL #1

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
check:
name: Static checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Run checks
run: npm run check