This repository has been archived by the owner on Jan 11, 2024. It is now read-only.
Bump actions/setup-node from 3 to 4 in /shared #12
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: CI | |
on: | |
push: | |
branches: | |
- main | |
- master | |
pull_request: | |
jobs: | |
actionlint: | |
name: Run actionlint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: reviewdog/action-actionlint@v1 | |
with: | |
# By default actionlint only checks the `.github/workflows` directory. | |
# Once providing an argument with a path, then all paths must be specified | |
# that we want it to check. Don't provide "yaml" paths. | |
actionlint_flags: >- | |
.github/workflows/*.yml | |
**/*.yml | |
fail_on_error: true | |
filter_mode: nofilter # added (default), diff_context, file, nofilter | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
reporter: github-check | |
yaml_lint: | |
name: Run yamllint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: reviewdog/action-yamllint@v1 | |
with: | |
fail_on_error: true | |
filter_mode: nofilter # added (default), diff_context, file, nofilter | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
reporter: github-check |