Skip to content

Commit

Permalink
Merge pull request #438 from kavicastelo/kavicastelo-patch-2
Browse files Browse the repository at this point in the history
Update ci.yml
  • Loading branch information
kavicastelo authored Apr 23, 2024
2 parents ee66967 + 87912a9 commit 4eaf43a
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 --force
- 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 4eaf43a

Please sign in to comment.