Skip to content

Commit

Permalink
Add build shared back to gh workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
patosullivan committed Feb 16, 2024
1 parent 67b65b3 commit 75e5637
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
- name: Install Dependencies
run: npm ci

- name: Build Shared Packages
run: npm run build:shared

- name: Run Lint
run: npm run lint --workspaces --if-present

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
push:
branches:
- "develop"
env:
env:
tag: ${{ github.event.inputs.tag || 'develop' }}
jobs:
build-frontend:
Expand All @@ -25,6 +25,8 @@ jobs:
node-version-file: .nvmrc
- name: Install Dependencies
run: npm ci
- name: Build Shared Packages
run: npm run build:shared
- working-directory: ./apps/tlon-web
run: npm run build
- uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 75e5637

Please sign in to comment.