Skip to content

Merge branch 'main' into flav/infra-chore #19040

Merge branch 'main' into flav/infra-chore

Merge branch 'main' into flav/infra-chore #19040

name: Lint & Build (front)
on:
push:
paths:
- types/**
- front/**
- .github/workflows/build-and-lint-front.yml
jobs:
check-eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.13.0
cache: "npm"
cache-dependency-path: ./front/package-lock.json
- working-directory: types
run: npm install && npm run build
- working-directory: sdks/js
run: npm install && npm run build
- working-directory: front
run: npm install && npm run tsc && npm run lint && npm run format:check && npm run docs:check