-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Akilon Krishnan
committed
Oct 9, 2023
1 parent
00662f9
commit 2836e2e
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,8 +69,12 @@ jobs: | |
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: npm ci && cd ./public/app && npm i --force | ||
- run: CI=false npm run build | ||
|
||
- name: Install node dependencies | ||
run: npm ci && cd ./public/app && npm i --force | ||
|
||
- name: Run build | ||
run: CI=false npm run build | ||
|
||
- name: Serverless deploy to S3 | ||
uses: serverless/[email protected] | ||
|