Skip to content

fix: add tag_name for GitHub Release on workflow_dispatch #22

fix: add tag_name for GitHub Release on workflow_dispatch

fix: add tag_name for GitHub Release on workflow_dispatch #22

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@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Type check
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test:run