Skip to content

fix: include package-lock.json in initial commit, replace ts-node wit… #24

fix: include package-lock.json in initial commit, replace ts-node wit…

fix: include package-lock.json in initial commit, replace ts-node wit… #24

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run format -- --check
- run: npm test -- --run
- run: npm run build