forked from AdaptiveConsulting/ReactiveTraderCloud
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (31 loc) · 771 Bytes
/
pull-fork.yml
File metadata and controls
42 lines (31 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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@v3
- name: Set Node version
uses: actions/setup-node@v3
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