chore(actions): bump actions/checkout from 6.1.0 to 7.0.1 in the workflow-dependencies group #6
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: Site quality | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| static: | |
| name: Static integrity | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Check out canonical core sources | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| repository: graphabi/graphabi | |
| path: .graphabi-core | |
| - name: Check tracked text | |
| run: python3 scripts/check_text.py | |
| - name: Check local links and semantics | |
| run: python3 scripts/check_site.py | |
| - name: Check public proof and generated assets | |
| run: python3 scripts/check_core_sync.py .graphabi-core | |
| - name: Check JavaScript syntax | |
| run: | | |
| node --check field.js | |
| node --check motion.js |