Skip to content

chore(deps): update dependency postcss to v8.5.18 [security] #129

chore(deps): update dependency postcss to v8.5.18 [security]

chore(deps): update dependency postcss to v8.5.18 [security] #129

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
jobs:
frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 20
cache: npm
# `npm install` (not `npm ci`) because the lockfile is generated on
# Windows and omits Linux-only optional deps that npm-on-Linux expects.
- run: npm install
- name: Lint
run: npm run lint
- name: Type check
run: npx tsc -b
- name: Test
run: npm test -- --run
pipeline:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.14'
cache: pip
- name: Install pipeline deps
run: pip install -r requirements.txt
- name: Test pipeline
# python -m pytest puts the repo root on sys.path so
# `from scripts.update_market_data import ...` resolves.
run: python -m pytest scripts/tests