Skip to content

Bump @typescript-eslint/eslint-plugin from 7.13.1 to 7.14.1 #381

Bump @typescript-eslint/eslint-plugin from 7.13.1 to 7.14.1

Bump @typescript-eslint/eslint-plugin from 7.13.1 to 7.14.1 #381

Workflow file for this run

name: CI
on:
pull_request:
branches: [master]
concurrency: ci-${{ github.ref }}
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: P5-wrapper/[email protected]
- name: Check formatting
run: pnpm format:check
- name: Formatting issues detected (attempting fix...)
if: ${{ failure() }}
run: pnpm format
- name: Commit fixed formatting issues
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Apply fixed formatting issues
branch: ${{ github.head_ref }}
lint:
runs-on: ubuntu-latest
steps:
- uses: P5-wrapper/[email protected]
- name: Lint
run: pnpm lint
- name: Linting issues detected (attempting fix...)
if: ${{ failure() }}
run: pnpm lint:fix
- name: Commit fixed linting issues
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Apply fixed linting issues
branch: ${{ github.head_ref }}
test:
runs-on: ubuntu-latest
steps:
- uses: P5-wrapper/[email protected]
- name: Test
run: pnpm test
build:
runs-on: ubuntu-latest
steps:
- uses: P5-wrapper/[email protected]
- name: Build
run: pnpm build