Linter - [[Feature]: Introduce full GitHub Actions automation suite for repository lifecycle (CI/CD, linting, and issue-driven repo creation) #14] by @MariusStorhaug #4
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: Linter | |
| run-name: "Linter - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}" | |
| on: [pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| statuses: write | |
| jobs: | |
| Lint: | |
| name: Lint code base | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Lint code base | |
| uses: super-linter/super-linter/slim@latest | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} |