Skip to content

Fix ng run cmd in ci #2

Fix ng run cmd in ci

Fix ng run cmd in ci #2

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "21.6.2"
- name: Install dependencies
run: npm install
- name: Run Karma tests
run: npx ng test --watch=false