Skip to content

Commit

Permalink
change to node version and now uses npm ci instead of npm install
Browse files Browse the repository at this point in the history
  • Loading branch information
bobcaprice committed May 26, 2022
1 parent bea35fa commit dfdd216
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 11
- name: Build Gateway service
Expand All @@ -30,13 +30,13 @@ jobs:
run: mvn -B verify -Pprod --file member-service/pom.xml
- name: Build Discovery service
run: mvn -B verify -Pprod --file discovery-service/pom.xml
- uses: actions/checkout@v1
- name: Use Node.js 10.16.0
uses: actions/setup-node@v1
- uses: actions/checkout@v3
- name: Use Node.js v16.13.2
uses: actions/setup-node@v3
with:
node-version: 10.16.0
node-version: v16.13.2
- name: Install dependencies
run: npm install
run: npm ci
working-directory: ./gateway
- name: Build
run: npm run webpack:qa:main
Expand Down

0 comments on commit dfdd216

Please sign in to comment.