feat(blog): Add announcement links to compiler-testing-part-2 #137
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: CI | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [22] | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| ALGOLIA_APP_ID: ${{ secrets.ALGOLIA_APP_ID }} | |
| ALGOLIA_API_KEY: ${{ secrets.ALGOLIA_API_KEY }} | |
| ALGOLIA_INDEX_NAME: ${{ secrets.ALGOLIA_INDEX_NAME }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Setup Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: "yarn" | |
| - name: Install dependencies | |
| run: | | |
| yarn install | |
| - name: Spellcheck | |
| run: | | |
| yarn spell | |
| - name: Build | |
| run: | | |
| yarn docusaurus build --out-dir build/ | |
| - name: Check for dead links | |
| uses: lycheeverse/lychee-action@v1 | |
| with: | |
| args: >- | |
| --verbose --no-progress | |
| --max-concurrency 4 | |
| --exclude "googletagmanager.com" | |
| --exclude "algolia.net" | |
| --exclude "dl.acm.org" | |
| './build/**/*.html' | |
| fail: false |