chore: move generate yaml button back to the top of the security page #1435
Workflow file for this run
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: Run Tests | |
| on: | |
| pull_request: | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - name: Run tests | |
| env: | |
| TINYBIRD_BASE_URL: https://tb.lf.org/ | |
| TINYBIRD_TOKEN: arandomtoken | |
| run: pnpm i --ignore-workspace && pnpm vitest | |
| working-directory: frontend |