forked from AdaptiveConsulting/ReactiveTraderCloud
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (30 loc) · 738 Bytes
/
branch-fork.yml
File metadata and controls
41 lines (30 loc) · 738 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
name: Fork Branch
on:
push:
branches:
- "**"
defaults:
run:
working-directory: packages/client
jobs:
build:
name: Build
runs-on: ubuntu-20.04
if: github.repository_owner != 'AdaptiveConsulting'
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