Fix casts for typescript-fetch enum keys not working on number-based … #1
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: Samples Java Helidon v3 | |
on: | |
push: | |
paths: | |
- samples/client/petstore/java-helidon-client/v3/** | |
- samples/server/petstore/java-helidon-server/v3/** | |
pull_request: | |
paths: | |
- samples/client/petstore/java-helidon-client/v3/** | |
- samples/server/petstore/java-helidon-server/v3/** | |
jobs: | |
build: | |
name: Build Java Helidon | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
sample: | |
- samples/client/petstore/java-helidon-client/v3/mp | |
- samples/client/petstore/java-helidon-client/v3/se | |
- samples/server/petstore/java-helidon-server/v3/mp | |
- samples/server/petstore/java-helidon-server/v3/se | |
version: [17] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.version }} | |
- name: Cache maven dependencies | |
uses: actions/cache@v4 | |
env: | |
cache-name: maven-repository | |
with: | |
path: | | |
~/.m2 | |
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }} | |
- name: Build | |
working-directory: ${{ matrix.sample }} | |
run: mvn clean package --no-transfer-progress |