Add Delete Account Section #971
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: PR links validation | |
| on: | |
| pull_request: | |
| jobs: | |
| Validate-links: | |
| name: Validate links | |
| runs-on: ubuntu-latest | |
| env: | |
| GOOGLE_CONTAINER_ID: ${{ secrets.GOOGLE_CONTAINER_ID }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: 'yarn' | |
| - name: Install dependencies | |
| run: | | |
| rm -vrf node_modules/.cache/webpack | |
| yarn install | |
| - name: Update versions from GitHub | |
| env: | |
| GH_API_TOKEN: ${{ secrets.GH_API_TOKEN }} | |
| run: | | |
| node _build_scripts/update-config-versions.js | |
| - name: Build a dev version | |
| run: yarn build-dev | |
| - name: Validate links from the build.dev folder | |
| run: node _build_scripts/validate-links-pr.js |