Skip to content

Update react monorepo #815

Update react monorepo

Update react monorepo #815

Workflow file for this run

name: Lint and Build TypeScript projects
on:
pull_request:
paths:
- typescript/**
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}-typescript
cancel-in-progress: true
jobs:
lint-and-build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: typescript
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "yarn"
cache-dependency-path: typescript/yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Build
run: yarn build