Skip to content

Commit

Permalink
chore: Update build workflow to include 'intrinsic-frontend' directory
Browse files Browse the repository at this point in the history
  • Loading branch information
bgorman87 committed Jul 4, 2024
1 parent 9dc8b13 commit 3ec6a94
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- master
paths:
- 'intrinsic-frontend/**'

jobs:
build:
Expand All @@ -16,12 +18,14 @@ jobs:

- name: Setup Node
uses: actions/setup-node@v3

- name: Install dependencies
uses: bahmutov/npm-install@v1
with:
node-version: '22.3.0'

- name: Build project
run: npm run build
run: |
cd intrinsic-frontend
npm install
npm run build

- name: Upload production-ready build files
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 3ec6a94

Please sign in to comment.