🐛 Fix account takedown with high-sev takedowns (#431) #1061
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 | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| building: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install node 20 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Check out Git repository | |
| uses: actions/checkout@v4 | |
| - name: Yarn install | |
| run: yarn | |
| - name: Typescript Check | |
| run: yarn type-check | |
| - name: Build | |
| run: yarn build |