Skip to content

Bump next from 13.4.12 to 13.5.0 #105

Bump next from 13.4.12 to 13.5.0

Bump next from 13.4.12 to 13.5.0 #105

Workflow file for this run

name: Linter
on: [pull_request]
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
- uses: pnpm/action-setup@v2
with:
version: 8
- run: pnpm add -D eslint-config-prettier
- run: pnpm install --no-frozen-lockfile
- name: eslint
uses: reviewdog/action-eslint@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-review
fail_on_error: "true"