Skip to content

Merge pull request #2 from cloudcore-cms/1-fix-ci-remove-missing-buil… #3

Merge pull request #2 from cloudcore-cms/1-fix-ci-remove-missing-buil…

Merge pull request #2 from cloudcore-cms/1-fix-ci-remove-missing-buil… #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- name: TypeScript check
run: npm run typecheck
- name: Tests
run: npm test
- name: Security audit
run: npm audit --audit-level=high