Skip to content

Bump typescript from 4.9.5 to 5.3.3 #4

Bump typescript from 4.9.5 to 5.3.3

Bump typescript from 4.9.5 to 5.3.3 #4

Workflow file for this run

name: main
on:
push:
branches:
- 'main'
pull_request:
jobs:
packages:
name: Install Packages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: npm
- run: npm ci
build:
name: Build
runs-on: ubuntu-latest
needs: [packages]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: npm
- run: npm ci
- run: npm run build
env:
NODE_ENV: production
lint:
name: Lint
runs-on: ubuntu-latest
needs: [packages]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: npm
- run: npm run lint -- --max-warnings=0
format:
name: Format
runs-on: ubuntu-latest
needs: [packages]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: npm
- run: npm ci
- run: npx prettier --check .
typeCheck:
name: Type Check
runs-on: ubuntu-latest
needs: [packages]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: npm
- run: npm ci
- run: npm run type-check