Bump @typescript-eslint/eslint-plugin from 8.11.0 to 8.13.0 #814
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
# @format | |
name: Build | |
on: | |
push: | |
branches: [main, development] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
cache: "yarn" | |
- name: Install Dependencies | |
run: yarn install --immutable --check-cache | |
- name: Prettier Check | |
run: yarn prettier-check | |
- name: ESlint | |
run: yarn eslint | |
- name: Stylelint | |
run: yarn stylelint-check | |
- name: Build | |
run: yarn build |