Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kavicastelo authored Apr 23, 2024
1 parent ee66967 commit 753dcd2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:
uses: actions/checkout@v2

- name: Install dependencies
run: npm install
run: |
cd client
npm install
- name: Build frontend
run: npm run build -- --prod
Expand All @@ -31,4 +33,6 @@ jobs:
java-version: '15'

- name: Build backend
run: ./mvnw clean package
run: |
chmod +x mvnw
./mvnw clean package

0 comments on commit 753dcd2

Please sign in to comment.