Skip to content

share common GitHub Actions workflow #3

share common GitHub Actions workflow

share common GitHub Actions workflow #3

Workflow file for this run

name: Test
on:
push:
branches:
- '*'
- '!main'
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: ./.github/workflows/shared-setup.yaml
- name: Test
run: pnpm t
- name: Build
run: pnpm build