From 271ba89704156469e93b839ee089fa1932a83770 Mon Sep 17 00:00:00 2001 From: Jan Szumotalski Date: Wed, 18 Jun 2025 19:38:12 +0200 Subject: [PATCH] actions: Add tests --- .gitea/workflows/test.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitea/workflows/test.yaml diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..7565862 --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,23 @@ +name: IPWA Tests +run-name: ${{ gitea.actor }} is testing out IPWA +on: [push] + +jobs: + Run Angular tests: + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [22] + steps: + - name: Checkout source code + uses: actions/checkout@v4 + - name: Setup Node.js $ + uses: actions/setup-node@v4 + with: + node-version: $ + cache: 'npm' + cache-dependency-path: package-lock.json + - name: Install dependencies + run: npm ci + - name: Run tests + run: npm run ci