Skip to content

Bump postcss from 8.4.16 to 8.4.31 in /myconext-gui #610

Bump postcss from 8.4.16 to 8.4.31 in /myconext-gui

Bump postcss from 8.4.16 to 8.4.31 in /myconext-gui #610

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
mongodb-version: [4.4]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Yarn Audit myconext
run: yarn audit --level high --groups dependencies optionalDependencies
working-directory: myconext-gui
- name: Yarn Audit account
run: yarn audit --level high --groups dependencies optionalDependencies
working-directory: account-gui
- name: Start MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: ${{ matrix.mongodb-version }}
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'temurin'
cache: 'maven'
- name: Set up cache
uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn clean install --file pom.xml
- name: Codecov
uses: codecov/[email protected]