Files
ipwa/.gitea/workflows/test.yaml
Jan Szumotalski 913ccd0bf1
Some checks failed
IPWA Tests / Run Angular tests (22) (push) Failing after 2m3s
actions: update matrix
2025-06-18 19:40:28 +02:00

24 lines
596 B
YAML

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 ${{matrix.node-version}}
uses: actions/setup-node@v4
with:
node-version: ${{matrix.node-version}}
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run ci