-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
version: 2.1 | ||
|
||
executors: | ||
node: | ||
docker: | ||
- image: cimg/node:10.24.1 | ||
working_directory: ~/regulome-encoded | ||
|
||
jobs: | ||
npm: | ||
executor: node | ||
resource_class: medium+ | ||
steps: | ||
- checkout | ||
- run: | ||
name: Install Javascript packages and build | ||
command: npm ci | ||
- run: | ||
name: npm tests | ||
# Can't store test results, the CLI for our Jest version doesn't support --ci or --reporter flags | ||
command: npm run circleci-test | ||
|
||
workflows: | ||
version: 2 | ||
regulome-encoded-tests: | ||
jobs: | ||
- npm |
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