Skip to content

feat: Download Content FE integration #296

feat: Download Content FE integration

feat: Download Content FE integration #296

Workflow file for this run

name: Client CI
on:
push:
paths:
- 'apps/client/**'
branches:
- main
- prod
pull_request:
paths:
- 'apps/client/**'
jobs:
code-checks:
name: ⬣ ESLint & ʦ TypeScript
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: 📥 Download deps
uses: bahmutov/npm-install@v1
with:
working-directory: apps/client
- name: 🔬 Lint
run: yarn lint:ci
working-directory: apps/client
- name: 🔎 Type check
run: yarn types:check
working-directory: apps/client