build(deps-dev): bump the js-deps group across 1 directory with 53 updates #5648
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: reviewdog | |
on: | |
pull_request: | |
types: ['opened', 'ready_for_review', 'reopened', 'synchronize'] | |
jobs: | |
node-checks: | |
name: Node checks | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
cache: 'yarn' | |
- run: make yarn | |
- run: 'echo "nodeLinker: node-modules" >>.yarnrc.yml' | |
- run: yarn install | |
- uses: reviewdog/action-eslint@v1 | |
with: | |
reporter: github-pr-review | |
level: warning | |
fail_on_error: true | |
- uses: reviewdog/action-stylelint@v1 | |
with: | |
github_token: ${{ secrets.github_token }} | |
reporter: github-pr-review | |
level: warning | |
fail_on_error: true | |
- name: tsc | |
run: yarn run check |