Skip to content

Standardize API responses and new docs page #12

Standardize API responses and new docs page

Standardize API responses and new docs page #12

Workflow file for this run

name: Tests
on:
push:
branches: [main]
paths:
- 'server/**/*.ts'
- 'server/test/**'
pull_request:
branches: [main]
paths:
- 'server/**/*.ts'
- 'server/test/**'
jobs:
build:
runs-on: ubuntu-latest
environment: actions
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 9
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Run the tests
run: pnpm test