Skip to content

feat/use hypercert api to show reports on homepage #36

feat/use hypercert api to show reports on homepage

feat/use hypercert api to show reports on homepage #36

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
strategy:
fail-fast: false
matrix:
command: ['lint:ci', 'typecheck']
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Build
run: pnpm install
- name: ${{ matrix.command }}
run: pnpm run ${{ matrix.command }}