Bump @babel/traverse from 7.18.11 to 7.23.2 in /ui #1243
Workflow file for this run
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
name: test aggregator | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
distribution: 'zulu' | |
cache: 'maven' | |
- name: test aggregator | |
run: | | |
export FLOWGATEPWD=$PWD | |
cd $FLOWGATEPWD/flowgate-common | |
sudo mvn clean install | |
cd $FLOWGATEPWD/common-restclient | |
sudo mvn clean install | |
cd $FLOWGATEPWD/worker-jobs | |
sudo mvn clean install | |
cd $FLOWGATEPWD/aggregator | |
sudo mvn clean test | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
flags: aggregator #Flag the upload to group coverage metrics (unittests, uitests, etc.). Multiple flags are separated by a comma (ui,chrome) | |
name: codecov-aggregator #Custom defined name for the upload | |
fail_ci_if_error: true #Specify if CI pipeline should fail when Codecov runs into errors during upload. Defaults to false |