mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
So that we can control the version we run without depending on external actions, and so that we use a consistent version for all linters. At the same time, unify to running the latest version of reviewdog, 0.21.0, which also involves changing the deprecated `fail_on_error` flag previously used by prettier action to `fail_level`.
32 lines
885 B
YAML
32 lines
885 B
YAML
name: Linters
|
|
on: [pull_request]
|
|
permissions:
|
|
contents: read # to fetch code (actions/checkout)
|
|
checks: write # to post check annotations
|
|
jobs:
|
|
lint:
|
|
name: reviewdog
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version-file: .node-version
|
|
- name: Install JS dependencies
|
|
run: yarn install --frozen-lockfile
|
|
|
|
- uses: ruby/setup-ruby@v1
|
|
with:
|
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
|
|
|
- run: git show --no-patch # the commit being tested (which is often a merge due to actions/checkout@v3)
|
|
|
|
- uses: reviewdog/action-setup@v1
|
|
with:
|
|
reviewdog_version: v0.21.0
|
|
|
|
- run: ./script/reviewdog.sh
|
|
env:
|
|
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.github_token }}
|