Skip to content

bump version to 1.0.4 #42

bump version to 1.0.4

bump version to 1.0.4 #42

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