Skip to content

Publish

Publish #16

Workflow file for this run

name: Check
on:
workflow_dispatch:
push:
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
# use file .node-version to determine node version
node-version-file: .node-version
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build
- name: Check format
if: always()
run: npm run format:check
- name: Check lint
if: always()
run: npm run lint
- name: Run type checker
if: always()
run: npm run typecheck