Skip to content

⬆️ Bump typescript from 5.4.5 to 5.5.2 (#72) #60

⬆️ Bump typescript from 5.4.5 to 5.5.2 (#72)

⬆️ Bump typescript from 5.4.5 to 5.5.2 (#72) #60

Workflow file for this run

name: CI Flow
on:
push:
paths-ignore:
- ".gitignore"
- "LICENSE"
- "README.md"
branches:
- "main"
- "develop"
jobs:
flow:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18.x', '20.x']
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- 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