Bump @typescript-eslint/parser from 6.7.0 to 6.15.0 #533
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: TS formatting | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- dev | |
defaults: | |
run: | |
shell: bash | |
working-directory: ts | |
jobs: | |
formatting-check: | |
name: TS Prettier formatting check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Check Format | |
run: npm run format-check | |
lint: | |
name: TS Lint check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: npm clean-install --ignore-scripts | |
- name: Check Lint | |
run: npm run lint-check |