Skip to content

Bump to v0.1.4

Bump to v0.1.4 #13

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Initialize environment
uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: npm
cache-dependency-path: package-lock.json
- name: Install node modules
run: npm install
- name: Type-checking
run: npm run ts