Skip to content

fix: corrigindo CI

fix: corrigindo CI #4

Workflow file for this run

name: Node CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node 24
uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'npm'
cache-dependency-path: package-lock.json
- 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