Skip to content

Interoperate with ozone and add deployment files (#24) #12

Interoperate with ozone and add deployment files (#24)

Interoperate with ozone and add deployment files (#24) #12

Workflow file for this run

name: CI - Validate Changes
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run type checking
run: npm run type-check