Skip to content

♻️ Refactor rename askTyped to ask #10

♻️ Refactor rename askTyped to ask

♻️ Refactor rename askTyped to ask #10

Workflow file for this run

---
name: CI Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: 'package.json' # Use Node.js version from package.json (Volta)
- name: Install dependencies
run: npm install
- name: Run unit tests
run: npm run test:unit
- name: Check types
run: npm run check