Skip to content

Commit

Permalink
ci: Run unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
CSantosM committed Oct 10, 2024
1 parent 52422fb commit 98289aa
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/openvidu-components-angular-E2E.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,27 @@ jobs:
LAUNCH_MODE: CI
run: npm run e2e:nested-events --prefix openvidu-components-angular

unit_tests:
name: Run Unit Tests
runs-on: ubuntu-latest
needs: test_setup
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
ref: ${{ inputs.commit_sha || github.sha }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install Dependencies
run: |
cd openvidu-components-angular
npm install
- name: Run Unit Tests
run: npm run lib:test


nested_components_e2e_directives:
needs: test_setup
name: Nested directives
Expand Down

0 comments on commit 98289aa

Please sign in to comment.