Skip to content

Continuous Integration #23

Continuous Integration

Continuous Integration #23

Workflow file for this run

name: ci
run-name: Continuous Integration
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
verify:
name: Verify project
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: npm
- run: make compile
- run: make lint
- run: make test