Skip to content

Merge branch 'main' of https://github.com/felipementel/API.Model.Node #9

Merge branch 'main' of https://github.com/felipementel/API.Model.Node

Merge branch 'main' of https://github.com/felipementel/API.Model.Node #9

Workflow file for this run

name: Node CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Node 24
uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Check types
run: npm run check-types
- name: Build
run: npm run build
- name: Run tests
run: npm test