Skip to content

fix: only shutdown on SIGTERM signal #22

fix: only shutdown on SIGTERM signal

fix: only shutdown on SIGTERM signal #22

Workflow file for this run

name: CI
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
submodules: true
- name: Enable Corepack
run: corepack enable
- name: Install Node
uses: actions/setup-node@v6
with:
node-version: 24
cache: yarn
- name: Install Dependencies
run: yarn install --immutable
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Build
run: yarn build