Skip to content
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 (#7) #13

Bump actions/setup-node from 3 to 4 in /shared (#7)

Bump actions/setup-node from 3 to 4 in /shared (#7) #13

Workflow file for this run

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