Barazo lexicon schemas and TypeScript types barazo.forum
at main 28 lines 744 B view raw
1name: 'Copilot Setup Steps' 2 3on: 4 workflow_dispatch: 5 push: 6 paths: 7 - .github/workflows/copilot-setup-steps.yml 8 pull_request: 9 paths: 10 - .github/workflows/copilot-setup-steps.yml 11 12jobs: 13 copilot-setup-steps: 14 runs-on: ubuntu-latest 15 permissions: 16 contents: read 17 steps: 18 - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 19 - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4 20 - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 21 with: 22 node-version: 24 23 - name: Install dependencies 24 run: pnpm install 25 - name: Typecheck 26 run: pnpm typecheck 27 - name: Test 28 run: pnpm test