Skip to content

Merge pull request #2 from BTreeMap/copilot/implement-oneshot-secure-… #4

Merge pull request #2 from BTreeMap/copilot/implement-oneshot-secure-…

Merge pull request #2 from BTreeMap/copilot/implement-oneshot-secure-… #4

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
api-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: api
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
- run: uv sync
- run: uv run pytest
web-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: web
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: web/package-lock.json
- run: npm ci
- run: npm run test