Skip to content

Show ProblemProof skill workflow #2

Show ProblemProof skill workflow

Show ProblemProof skill workflow #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
web:
name: Web checks
runs-on: ubuntu-latest
defaults:
run:
working-directory: apps/web
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
cache-dependency-path: apps/web/package-lock.json
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Build Worker
run: npm run build
skill:
name: Skill checks
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Run workspace tests
run: python -m unittest tests/test_workspace.py