Skip to content

Commit

Permalink
Adds CI GH workflows for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Damian96 committed Nov 24, 2024
1 parent 10ab509 commit 338a393
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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: ng test --no-watch --no-progress --browsers=ChromeHeadless

0 comments on commit 338a393

Please sign in to comment.