Skip to content

Commit

Permalink
feat: add lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
krisalyssa committed Jun 29, 2024
1 parent 948a85a commit 1bd745c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# code: language=yaml insertSpaces=true tabSize=2
name: lint
on:
pull_request:
types:
- opened
- reopened
- synchronize
push:
branches:
- main
workflow_dispatch:

permissions:
contents: read
# id-token: write
# issues: write
# pull-requests: write

jobs:
lint-gha:
runs-on: ubuntu-latest
steps:
- name: check out repository
uses: actions/checkout@v4

- name: Check workflow files
uses: docker://rhysd/actionlint:latest
with:
args: -color

0 comments on commit 1bd745c

Please sign in to comment.