Skip to content

[READONLY] feat: Erase block comments #560

[READONLY] feat: Erase block comments

[READONLY] feat: Erase block comments #560

Workflow file for this run

name: Test unit on source
on:
push:
branches: [main, release]
pull_request:
workflow_dispatch:
merge_group:
types:
- checks_requested
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Use Node.js 24.x
uses: actions/setup-node@v4
with:
node-version: 24.x
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Test unit
run: pnpm test:unit-and-attest