Skip to content

⬆️ Bump typescript from 5.4.3 to 5.4.5 (#18) #11

⬆️ Bump typescript from 5.4.3 to 5.4.5 (#18)

⬆️ Bump typescript from 5.4.3 to 5.4.5 (#18) #11

Workflow file for this run

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