Files
yoga/.github/workflows/validate-website-next.yml
Nick Gerleman 4b2b1e86b7 Unify ESLint and Prettier across xplat/yoga (#1335)
Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1335

Reviewed By: christophpurrer

Differential Revision: D47459866

fbshipit-source-id: a583da91ea0f3c6a01917edc5ecf57eb177b2544
2023-07-17 11:24:36 -07:00

42 lines
743 B
YAML

name: Website (Next)
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/setup-js
- name: Build Yoga
run: yarn build
working-directory: javascript
- name: Build Website
run: yarn build
working-directory: website-next
typecheck:
name: Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: yarn install
run: yarn install --frozen-lockfile
working-directory: javascript
- name: yarn tsc
run: yarn tsc
working-directory: website-next