Skip to content

Rebrand to DockPull; daily scheduled scan time; fix settings icon #39

Rebrand to DockPull; daily scheduled scan time; fix settings icon

Rebrand to DockPull; daily scheduled scan time; fix settings icon #39

Workflow file for this run

name: CI
on:
push:
branches: [main, "claude/**"]
pull_request:
jobs:
server:
name: Server tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: server
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
cache-dependency-path: server/package-lock.json
- run: npm ci
- run: npm test
client:
name: Client build
runs-on: ubuntu-latest
defaults:
run:
working-directory: client
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
cache-dependency-path: client/package-lock.json
- run: npm ci
- run: npm run build