Skip to content

build(deps): update dependency type-fest to v4 #10188

build(deps): update dependency type-fest to v4

build(deps): update dependency type-fest to v4 #10188

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout git repository
uses: actions/checkout@v3
- name: Install dependencies with Yarn
run: yarn install
- name: Compile TypeScript
run: yarn run build
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout git repository
uses: actions/checkout@v3
- name: Install dependencies with Yarn
run: yarn install
- name: Lint
run: yarn run lint
formatting:
name: Check formatting
runs-on: ubuntu-latest
steps:
- name: Checkout git repository
uses: actions/checkout@v3
- name: Install dependencies with Yarn
run: yarn install
- name: Check formatting with Prettier
run: yarn run style