Skip to content

chore(deps-dev): Bump typescript from 5.3.3 to 5.6.3 #43

chore(deps-dev): Bump typescript from 5.3.3 to 5.6.3

chore(deps-dev): Bump typescript from 5.3.3 to 5.6.3 #43

Workflow file for this run

name: Code Quality Checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
checks:
name: πŸ” Code Quality Checks
runs-on: ubuntu-latest
steps:
- name: πŸ›’ Checkout code
uses: actions/checkout@v3
- name: πŸ”§ Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- name: πŸ“¦ Install dependencies
run: yarn install --immutable
- name: πŸ”Ž Run typecheck
run: yarn typecheck
- name: 🧹 Run lint
run: yarn lint
- name: 🎨 Run Prettier check
run: yarn format:check
- name: πŸ§ͺ Run tests
run: yarn test