Update dependency karma-jasmine to v4.0.2 #1368
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Node.js CI | |
on: | |
push: | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Node 14.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 14.x | |
- name: Install Dependencies | |
run: npm ci | |
- name: Lint Code | |
run: npm run lint | |
- name: Build Library | |
run: npm run build:lib | |
- name: Build Sample | |
run: npm run build:sample | |
- name: Integration Tests | |
run: npm run test:ci | |
- name: E2E test Sample | |
run: npm run e2e |