Release v3.2.0 #102
This file contains hidden or 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: Test web | |
on: | |
pull_request: | |
branches: | |
- master | |
- develop | |
permissions: | |
contents: write | |
jobs: | |
test-and-build: | |
concurrency: ci-${{ github.ref }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Unit test 🧪 | |
run: ./gradlew webTest | |
- name: Build 🏗️ | |
run: ./gradlew application:webBrowserDistribution |