Skip to content

Add command to stop stress tester #33

Add command to stop stress tester

Add command to stop stress tester #33

Workflow file for this run

on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 6.32.9
- name: Setup Node.js with pnpm cache
uses: actions/setup-node@v4
with:
node-version: 18
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Type check project
run: |
pnpm run type-build
pnpm run type-check
- name: Lint and check formatting
run: pnpm run check
- name: Build project
run: pnpm run build