Skip to content

Commit

Permalink
Add linting of GitHub Actions workflows (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanTAllen committed Aug 17, 2023
1 parent 813c50d commit 8a9bc98
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/lint-action-workflows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Lint GitHub Action Workflows

on: pull_request

concurrency:
group: lint-actions-${{ github.ref }}
cancel-in-progress: true

jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check workflow files
uses: docker://ponylang/shared-docker-ci-actionlint:20230810
with:
args: -color

0 comments on commit 8a9bc98

Please sign in to comment.