Skip to content

chore(deps): update typescript-eslint monorepo to v7 (major) #134

chore(deps): update typescript-eslint monorepo to v7 (major)

chore(deps): update typescript-eslint monorepo to v7 (major) #134

Workflow file for this run

name: Build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node LTS
uses: actions/setup-node@v3
with:
node-version: lts/*
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Lint
run: yarn lint
- name: Format
run: yarn format:check
- name: Test
run: yarn test --passWithNoTests
- name: Build
run: yarn build