Skip to content

dev-deps: update dependency typescript to v5.5.3 - autoclosed #1765

dev-deps: update dependency typescript to v5.5.3 - autoclosed

dev-deps: update dependency typescript to v5.5.3 - autoclosed #1765

Workflow file for this run

# This is a Github Workflow that runs lint, formatter and unit tests on every
# push and pull request.
name: Quality
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
FREEZER_TOKEN: ${{ secrets.FREEZER_TOKEN }}
jobs:
quality:
name: Checking code quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: yarn
- name: Setting up dependencies & workspaces
run: yarn install --immutable --immutable-cache && yarn run -T setup
- name: Checking linter
run: yarn run -T lint
- name: Checking format
run: yarn run -T format
- name: Checking typings
run: yarn run -T types-check