Skip to content

feat: Added automatic testing pipeline #4

feat: Added automatic testing pipeline

feat: Added automatic testing pipeline #4

Workflow file for this run

name: Angular Tests
on:
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci --legacy-peer-deps
- name: Test
run: npm test