Skip to content

feat: documents link support (#20) #6

feat: documents link support (#20)

feat: documents link support (#20) #6

Workflow file for this run

name: Web
on:
push:
branches:
- main
paths:
- web/**
- .github/workflows/web.yaml
pull_request:
branches:
- main
paths:
- web/**
- .github/workflows/web.yaml
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: web
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Install dependencies
run: npm ci
- name: Formatting
run: npm run test:format
- name: Types
run: npm run test:types
- name: Unit tests
run: npm run test:unit