Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
version: 2
version: 2.1

jobs:
build:
working_directory: ~/ngrx-auto-entity
docker:
- image: circleci/node:14.15-browsers
- image: cimg/node:lts-browsers
steps:
- checkout
- run: NODE_ENV=ci npm install
- run: npm run lint
- run:
name: Install dependencies
command: NODE_ENV=ci npm ci --silent
- run:
name: Run linting
command: npm run lint
- run:
name: Run tests (with JUnit output)
command: npm run test:ci
environment:
JEST_JUNIT_OUTPUT: "reports/junit/js-test-results.xml"
JEST_JUNIT_OUTPUT: reports/junit/js-test-results.xml
- store_test_results:
path: reports/junit
- store_artifacts:
Expand Down