Skip to content

Update 04-reporting-on-fees.mdx #1116

Update 04-reporting-on-fees.mdx

Update 04-reporting-on-fees.mdx #1116

Workflow file for this run

name: Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for git diff commands
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'yarn'
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test
- name: Check for missing redirects
run: yarn tsx scripts/check-redirects.ts --ci