Skip to content

build(deps-dev): bump typescript from 4.5.4 to 5.1.6 #1600

build(deps-dev): bump typescript from 4.5.4 to 5.1.6

build(deps-dev): bump typescript from 4.5.4 to 5.1.6 #1600

Workflow file for this run

name: Test, lint, performance checks
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Test, lint, performance checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Restore node_modules from cache
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-modules-
- name: Install project
run: yarn
- name: Run linter
run: yarn lint
- name: Run css linter
run: yarn lint-style
- name: Type check
run: yarn type-check
- name: Unit test
run: yarn test:coverage
- name: Check bundle size
run: yarn build && ./node_modules/.bin/bundlesize