Skip to content

Update dependency autoprefixer to v10.4.20 #985

Update dependency autoprefixer to v10.4.20

Update dependency autoprefixer to v10.4.20 #985

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle
name: Java CI with Gradle
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install -g pnpm
- name: Build with Gradle
uses: gradle/gradle-build-action@ef85c4ed42c6bd3e2d9deb8edcba57e41360968b
with:
arguments: build
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: failure() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/test/TEST-*.xml'