⬆️ Bump typescript-eslint from 7.8.0 to 7.9.0 (#23) #16
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: Branch Flow | |
on: | |
push: | |
paths-ignore: | |
- "./action/**" | |
- "./.devcontainer/**" | |
- ".gitignore" | |
- "LICENSE" | |
- "README.md" | |
branches: | |
- "main" | |
- "develop" | |
jobs: | |
flow: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Check Lint | |
run: npm run check:lint | |
- name: Check Typescript | |
run: npm run check:tsc | |
- name: Run Unit Tests | |
run: npm run test:unit |