build(deps-dev): bump @typescript-eslint/eslint-plugin from 6.7.3 to 6.9.1 #198
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: Check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
permissions: | |
statuses: read | |
contents: read | |
packages: read | |
env: | |
GH_NPM_TOKEN: ${{ secrets.GH_NPM_TOKEN }} | |
jobs: | |
prettier: | |
name: Prettier | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Setup project | |
uses: ./.github/actions/setup | |
- name: Run prettier | |
run: pnpm prettier --check "**/*.{ts,tsx,md}" | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Setup project | |
uses: ./.github/actions/setup | |
- name: Run lint | |
run: pnpm lint | |
check: | |
name: Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Setup project | |
uses: ./.github/actions/setup | |
- name: Run check | |
run: pnpm check | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Setup project | |
uses: ./.github/actions/setup | |
- name: Run test | |
run: pnpm test | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Setup project | |
uses: ./.github/actions/setup | |
- name: Build | |
run: pnpm build | |
- name: Check if there is any difference | |
run: git diff --exit-code dist/ |