Skip to content

API Tests

API Tests #2

Workflow file for this run

name: API Tests
on:
workflow_run:
workflows: ["Production Deployment"]
branches: [main]
types:
- completed
jobs:
Check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: "yarn"
cache-dependency-path: "yarn.lock"
- run: yarn install --frozen-lockfile
- run: test:e2e