Skip to content

Bump typescript from 5.3.3 to 5.4.5 #190

Bump typescript from 5.3.3 to 5.4.5

Bump typescript from 5.3.3 to 5.4.5 #190

Workflow file for this run

name: project
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
- uses: actions/cache@v4
with:
path: node-modules
key: node-modules-${{ hashFiles('yarn.lock') }}
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn lint:ci