This repository was archived by the owner on Mar 16, 2026. It is now read-only.
Weekly Lint repository #222
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: Weekly Lint repository | |
| on: | |
| schedule: | |
| - cron: "0 0 * * 0" | |
| workflow_dispatch: | |
| jobs: | |
| repo-lint: | |
| name: "repolint" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout repo" | |
| uses: actions/checkout@v2.0.0 | |
| with: | |
| fetch-depth: 0 | |
| - name: "Install Node.js" | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: '12.x' | |
| - name: "Install repolinter" | |
| run: npm install -g repolinter | |
| - name: "Run repolinter" | |
| run: repolinter lint --dryRun -g $GITHUB_SERVER_URL/$GITHUB_REPOSITORY |