Skip to content

Merge pull request #1 from felipementel/dependabot/github_actions/act… #6

Merge pull request #1 from felipementel/dependabot/github_actions/act…

Merge pull request #1 from felipementel/dependabot/github_actions/act… #6

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@v6
- name: Setup Node 24
uses: actions/setup-node@v4
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