ci: provide composite actions for upload-artifact/download-artifact #149
Workflow file for this run
This file contains 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: actionlint | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: ["main"] | |
paths: | |
- ".github/actions/**" | |
- ".github/workflows/**" | |
jobs: | |
actionlint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 3 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: actionlint | |
uses: reviewdog/action-actionlint@v1 | |
with: | |
reporter: github-pr-review | |
fail_on_error: true # workflow will fail when actionlint detect warning. |