Skip to content

Update OpenAPI specs #1578

Update OpenAPI specs

Update OpenAPI specs #1578

Workflow file for this run

name: Test Action
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up mise
uses: jdx/mise-action@v2
with:
cache: true
env:
# Use github.token instead of an app token so this workflow works
# for fork PRs (e.g. dependabot), which don't have access to secrets.
GITHUB_TOKEN: ${{ github.token }}
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Check code formatting
run: pnpm run lint
- name: Run tests
run: pnpm test