Skip to content
This repository has been archived by the owner on Apr 25, 2024. It is now read-only.

Update dependency lerna to v8 #1261

Update dependency lerna to v8

Update dependency lerna to v8 #1261

Workflow file for this run

name: reviewdog
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
eslint:
if: github.event.pull_request.draft == false
name: runner / eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Yarn install
run: yarn install --frozen-lockfile
- name: reviewdog
uses: reviewdog/action-eslint@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-review
eslint_flags: './**/*.{ts,tsx}'