Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
hdescottes committed Aug 6, 2023
1 parent 1f84578 commit f07b2ab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b
- name: Cache Gradle packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
Expand All @@ -38,7 +38,7 @@ jobs:
rm -f ~/.gradle/caches/modules-2/gc.properties
- name: Use Node 18.x
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '18.x'
cache: npm
Expand All @@ -49,7 +49,7 @@ jobs:
run: npm run build
working-directory: app-ui
- name: Test
run: npm test --no-watch --no-progress --browsers=ChromeHeadlessCI
run: npm run test --no-watch --no-progress --browsers=ChromeHeadlessCI
working-directory: app-ui

cypress-run:
Expand Down

0 comments on commit f07b2ab

Please sign in to comment.