Upgrading the linter and fixing some errors #504
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: Validate | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Node setup | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| - name: Install yarn | |
| run: npm install --global yarn | |
| - name: Install dependecies | |
| run: yarn install --frozen-lockfile | |
| - name: lint | |
| run: yarn lint | |
| - name: Unit Tests | |
| run: npx vitest run | |
| - name: Start podman socket | |
| run: systemctl --user start podman.socket | |
| - name: Acceptance Tests | |
| run: ./aatp/run | |
| - name: Upload acceptance test results | |
| if: ${{ failure() }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: aatp-result | |
| path: aatp/result |