Skip to content

Complete ESM conversion and improve typing throughout the codebase #69

Complete ESM conversion and improve typing throughout the codebase

Complete ESM conversion and improve typing throughout the codebase #69

Workflow file for this run

name: Node.js Tests
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22.x'
cache: 'npm'
registry-url: 'https://registry.npmjs.org' # Added this line
- name: Install all dependencies
run: npm run install-all
- name: Run build
run: npm run build
- name: Run backend tests
run: cd backend && npm test