Make it possible for org admins to issue certs for their own org #39
This file contains hidden or 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: Build project | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| cache: 'pnpm' | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.24 | |
| cache-dependency-path: ./go/go.sum | |
| - name: build | |
| run: | | |
| pnpm install | |
| pnpm run build:go | |
| pnpm run build |