mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 05:07:52 +00:00
7e7141a5a0
* Updated library versions * Use Karma alternative spec loading * Fixed memory leak in URLTimeSettingsSynchronizer * Introduce mock DataTransfer object to fix issue with firefox headless * make resetApplicationState return a promise * Remove BeforeAll * Do not throw an error if root returns no children * Adding missing parameters to ES tests * Fixed TransactionService bug * bump test coverage up to 64%
37 lines
918 B
YAML
37 lines
918 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/node:13-browsers
|
|
environment:
|
|
CHROME_BIN: "/usr/bin/google-chrome"
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: Update npm
|
|
command: 'sudo npm install -g npm@latest'
|
|
- restore_cache:
|
|
key: dependency-cache-{{ checksum "package.json" }}
|
|
- run:
|
|
name: Installing dependencies (npm install)
|
|
command: npm install
|
|
- save_cache:
|
|
key: dependency-cache-{{ checksum "package.json" }}
|
|
paths:
|
|
- node_modules
|
|
- run:
|
|
name: npm run test:coverage
|
|
command: npm run test:coverage
|
|
- run:
|
|
name: npm run lint
|
|
command: npm run lint
|
|
- store_artifacts:
|
|
path: dist
|
|
prefix: dist
|
|
|
|
workflows:
|
|
version: 2
|
|
test:
|
|
jobs:
|
|
- build
|