WIP: FX Restyle #1038
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Fork Pull Request | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
defaults: | |
run: | |
working-directory: packages/client | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-20.04 | |
if: ${{ github.event.pull_request.head.repo.fork }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set Node version | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm ci | |
- name: Verify Quality (type checking, linting, format checking, tests) | |
run: npm run verify | |
- name: Build (web) | |
run: | | |
npm run build | |
npm run storybook:build | |
- name: Build (OpenFin) | |
run: npm run openfin:build |