chore(deps): bump fast-xml-parser from 5.4.1 to 5.5.6 #71
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: Build & Test | |
| on: | |
| pull_request: | |
| branches: | |
| - "*" | |
| push: | |
| branches: | |
| - "*" | |
| jobs: | |
| test_job: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write # Required for posting/updating PR comments | |
| statuses: write # Required for reporting commit statuses | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20 | |
| - name: Install pnpm | |
| run: npm install -g pnpm | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Build Action | |
| run: pnpm run build | |
| - name: Run tests | |
| run: pnpm test | |
| - name: Test Analysis | |
| id: analysis | |
| uses: ./ # TODO: later remove this with the public address | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - run: npm pack | |
| - name: Upload build artifacts | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: action-package | |
| path: "*.tgz" |