Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1329 Add build validation for `website-next`, also adding validation that `yoga-layout/sync` may be bundled by Webpack out-of-the-box. Reviewed By: christophpurrer Differential Revision: D47414176 fbshipit-source-id: 9adc4f9673333f4f79c91352f445489d6da05a07
20 lines
399 B
YAML
20 lines
399 B
YAML
name: Setup JavaScript envirionment
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Install Node
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 18.x
|
|
|
|
- name: Install emsdk
|
|
uses: ./.github/actions/install-emsdk
|
|
|
|
- name: Install Ninja
|
|
uses: ./.github/actions/install-ninja
|
|
|
|
- name: yarn install
|
|
shell: bash
|
|
run: yarn install --frozen-lockfile
|