Skip to content

feat: release v1.2.3 #136

feat: release v1.2.3

feat: release v1.2.3 #136

Workflow file for this run

name: Node CI
on:
push:
tags:
- '*'
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm ci
npm run build --if-present
npm run typecheck
npm run lint
npm run check-format
env:
CI: true