fix: update recognition badges layout and data integration #10660
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: Build and Preview Site | |
| on: | |
| pull_request: | |
| branches: [master] | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| site-preview: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout 🛎️ | |
| uses: actions/checkout@master | |
| with: | |
| persist-credentials: false | |
| fetch-depth: 1 | |
| - name: Install and Build 🔧 | |
| run: | | |
| npm install --legacy-peer-deps | |
| node -v | |
| npm run version | |
| npm run noIndex | |
| - name: Broken Link Check 🔗 | |
| uses: technote-space/broken-link-checker-action@v2 | |
| with: | |
| target: ./public/**/*.html | |
| - name: Zip Site | |
| run: bash ./script.sh | |
| - name: Upload files | |
| uses: actions/upload-artifact@master | |
| with: | |
| name: public-dir | |
| path: ./public-dir.zip | |
| retention-days: 1 | |
| - name: Trigger Inner workflow | |
| run: echo "triggering inner workflow" |