Skip to content

Merge pull request #55 from ondata/fix/bill-progress-branch-c-camera #3

Merge pull request #55 from ondata/fix/bill-progress-branch-c-camera

Merge pull request #55 from ondata/fix/bill-progress-branch-c-camera #3

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
push:
branches: [main]
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 35
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Type check
run: NODE_OPTIONS="--max-old-space-size=4096" npx tsc --noEmit
- name: Test
run: npm test -- --run