Update dependency webpack to v5 [SECURITY] #786
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: sbt-coverage | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Instrument for coverage measurement | |
run: sbt coverage | |
- name: Run the tests | |
run: sbt test | |
- name: Create a report | |
run: sbt coverageReport | |
# Note: Enable upload test report when the bug in ScalaTest 3.1.0 (NoClassDefFoundError for flexmaark classes) is fixed. | |
# - vpeurala, 29.12.2019 | |
# - uses: actions/upload-artifact@v1 | |
# with: | |
# name: test-report | |
# path: target/test-reports | |
- name: Check file existence | |
id: check_files | |
uses: andstor/file-existence-action@v1 | |
with: | |
files: "target/scala-2.12/scoverage-report" | |
- uses: actions/upload-artifact@v2 | |
if: steps.check_files.outputs.files_exists == 'true' | |
with: | |
name: coverage-report | |
path: target/scala-2.12/scoverage-report | |
- name: Upload coverage report to Codacy | |
if: steps.check_files.outputs.files_exists == 'true' | |
run: sbt codacyCoverage | |
env: | |
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }} |