Skip to content

Support For Charset in HAR Writting #104

Support For Charset in HAR Writting

Support For Charset in HAR Writting #104

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
## Sets environment variable
CHROME_MODE: HEADLESS
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: maven
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
- uses: browser-actions/setup-chrome@latest
- name: test chrome
run: chrome --version
- name: Build with Maven
run: mvn -B clean verify --file pom.xml -s $GITHUB_WORKSPACE/settings.xml -Dfile.encoding=UTF-8