Skip to content

chore(deps-dev): bump the dev-dependencies group with 3 updates #30

chore(deps-dev): bump the dev-dependencies group with 3 updates

chore(deps-dev): bump the dev-dependencies group with 3 updates #30

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Check types
run: npm run typecheck
- name: Run the tests
run: npm run test
- name: Build
run: npm run build