CircleCI config file
This commit is contained in:
parent
04f58bb0c9
commit
b1beadacee
1 changed files with 23 additions and 0 deletions
23
.circleci/config.yml
Normal file
23
.circleci/config.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
version: 2
|
||||
jobs:
|
||||
build:
|
||||
docker:
|
||||
- image: trzeci/emscripten
|
||||
|
||||
working_directory: ~/repo
|
||||
|
||||
steps:
|
||||
- checkout
|
||||
- run:
|
||||
name: Native Compile
|
||||
command: make
|
||||
- run:
|
||||
name: Native Tests
|
||||
command: make test
|
||||
- run:
|
||||
name: JS Compile
|
||||
command: make js
|
||||
- run:
|
||||
name: JS Tests
|
||||
working_directory: ~/repo/javascript
|
||||
command: npm run test
|
Loading…
Reference in a new issue