Skip to content

Upgrading the linter and fixing some errors #504

Upgrading the linter and fixing some errors

Upgrading the linter and fixing some errors #504

Workflow file for this run

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