Skip to content

feat: harden runtime security controls and add CI smoke coverage #1

feat: harden runtime security controls and add CI smoke coverage

feat: harden runtime security controls and add CI smoke coverage #1

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Syntax check
run: npm run check
- name: Smoke tests
run: npm test