Bump @babel/traverse from 7.18.11 to 7.23.2 in /ui #1187
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 nlyte-worker | |
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 nlyte-worker | |
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/nlyte-worker | |
sudo mvn clean test | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
flags: nlyte | |
name: codecov-nlyte-worker | |
fail_ci_if_error: true |