Skip to content

Bump typescript from 5.7.2 to 5.7.3 in the development-dependencies group across 1 directory #244

Bump typescript from 5.7.2 to 5.7.3 in the development-dependencies group across 1 directory

Bump typescript from 5.7.2 to 5.7.3 in the development-dependencies group across 1 directory #244

Workflow file for this run

name: Static checks
on:
pull_request:
jobs:
types_and_lint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: Use corepack
run: corepack enable
- name: Install node dependencies
run: yarn --immutable
- name: Spellcheck
run: yarn spellcheck:report
- name: Check formatting
run: yarn format:check
- name: Check types
run: yarn typecheck
- name: Fetch packages
run: yarn prepare
- name: Check build
run: yarn build