Skip to content

feat: implement STOPBAR_CROSSING packet handling and validation for p… #116

feat: implement STOPBAR_CROSSING packet handling and validation for p…

feat: implement STOPBAR_CROSSING packet handling and validation for p… #116

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: [main]
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
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: Type check
run: npx tsc --noEmit
- name: Generate Wrangler types
run: npm run typegen
- name: Build project
run: npm run build