Update dependency eslint to v9.30.1 #984
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: Check application | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
permissions: | |
pull-requests: write | |
jobs: | |
build: | |
uses: ./.github/workflows/build-node.yml | |
bundle: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure Java version | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '24' | |
distribution: 'temurin' | |
architecture: x64 | |
- name: Download artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: build-artifact | |
- name: 'Report Coverage' | |
if: always() | |
uses: davelosert/vitest-coverage-report-action@v2 | |
- name: Create JAR bundle | |
run: ./builder/gradlew -b builder/build.gradle.kts jar | |
- name: Store artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: bundle-jar | |
path: builder/build/libs |