Skip to content

build(deps-dev): bump typescript from 4.9.5 to 5.9.3 #18

build(deps-dev): bump typescript from 4.9.5 to 5.9.3

build(deps-dev): bump typescript from 4.9.5 to 5.9.3 #18

Workflow file for this run

name: Lint and Format
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
lint:
name: ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
format:
name: Prettier Format Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npx prettier --check "packages/**/*.{ts,json}"
- name: Annotate formatting issues
if: failure()
run: |
echo "::error::Code formatting issues detected. Run 'npm run format' to fix."