This repository has been archived by the owner on Nov 29, 2023. It is now read-only.
build(deps): Bump react-redux from 8.1.1 to 8.1.3 in /api-editor/gui … #759
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: Main | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build-api-editor: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: write | |
strategy: | |
matrix: | |
node-version: [ 18.x ] | |
java-version: [ 17 ] | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
cache-dependency-path: api-editor/gui/package-lock.json | |
- name: Set up JDK ${{ matrix.java-version }} | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: ${{ matrix.java-version }} | |
cache: gradle | |
# See https://docs.github.com/en/actions/guides/building-and-testing-java-with-gradle | |
- name: Setup Gradle | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Build with Gradle | |
run: ./gradlew build koverMergedXmlReport | |
working-directory: ./api-editor | |
- name: Upload test report | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: backend test report | |
path: api-editor/backend/build/reports | |
if-no-files-found: ignore | |
- name: Upload coverage to Codecov | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
directory: api-editor/build/reports/kover/merged/xml | |
files: report.xml | |
gui-test-coverage: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./api-editor/gui | |
strategy: | |
matrix: | |
node-version: [ 18.x ] | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
cache-dependency-path: api-editor/gui/package-lock.json | |
- name: Install dependencies | |
run: npm ci | |
- name: Test with Vitest | |
run: npm run test-with-coverage | |
- name: Upload coverage to Codecov | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
directory: api-editor/gui/coverage | |
files: coverage-final.json |