Add Program Whitelist #10140
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Manager - Lint & Test & Typecheck | |
on: | |
push: | |
branches: | |
- main | |
- mrelease | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
lint-test-typecheck: | |
concurrency: ci-round-manager-${{ github.head_ref || github.run_id }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 8 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
cache: "pnpm" | |
- name: Install Dependencies | |
run: | | |
pnpm install | |
- name: Lint Round Manager | |
run: | | |
pnpm lint:manager | |
- name: Test Round Manager | |
run: | | |
pnpm test:manager | |
- name: Typecheck Round Manager | |
run: | | |
pnpm typecheck:manager |