Skip to content

refactor(commands): restructure commands to use a stack abstraction #273

refactor(commands): restructure commands to use a stack abstraction

refactor(commands): restructure commands to use a stack abstraction #273

Workflow file for this run

name: go-test
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: ./.github/workflows/go-setup
- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Set up Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 24
cache: 'pnpm'
cache-dependency-path: pkg/cc/frontend/pnpm-lock.yaml
- name: Build frontend
run: make cc-frontend
- run: go test -v -race -coverprofile=coverage.txt ./...