fix(docs): point the repository CTA at GitHub, not Codeberg #205
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: Lint Check | |
| on: | |
| pull_request: | |
| branches: | |
| - development | |
| - main | |
| - beta | |
| jobs: | |
| lint-check: | |
| runs-on: ubuntu-latest | |
| # Observed fleet-wide: n=176 runs, median 0.6 min, max 1.4 min. Loose bound to catch a hang, not to enforce speed. | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Linting | |
| run: npm run lint |