Bump fast-xml-parser from 5.4.1 to 5.5.7 #899
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: Artifacts | |
| on: push | |
| jobs: | |
| build: | |
| name: build the WeGA-WebApp xar package | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: '11' | |
| distribution: 'adopt' | |
| - name: Set up Node 25 | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 25 | |
| - name: Build with Ant | |
| run: ant clean xar | |
| - name: Archive xar package | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: xar package | |
| path: build/*.xar |