Skip to content

Commit 5dd666c

Browse files
authored
Merge branch 'master' into poetry-overwrite-requirements-file
2 parents a43b762 + b652947 commit 5dd666c

File tree

19 files changed

+459
-243
lines changed

19 files changed

+459
-243
lines changed

circle.yml renamed to .circleci/config.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@ jobs:
1616
./configure
1717
make
1818
sudo make altinstall
19-
# install bats
20-
- run: |
21-
git clone https://github.com/sstephenson/bats.git
22-
cd bats
23-
sudo ./install.sh /usr/local
2419
# other deps
2520
- run: sudo apt -y update && sudo apt -y install python-pip python2.7 curl unzip
2621
# upgrade python3.6 pip to latest
@@ -33,18 +28,20 @@ jobs:
3328
python get-poetry.py --preview --yes
3429
rm get-poetry.py
3530
# install nodejs
36-
- run: curl -sL https://deb.nodesource.com/setup_6.x | sudo bash - && sudo apt -y install nodejs
31+
- run: curl -sL https://deb.nodesource.com/setup_10.x | sudo bash - && sudo apt -y install nodejs
3732
# install serverless & depcheck
38-
- run: npm install -g serverless depcheck
33+
- run: npm install -g serverless
3934
# install deps
4035
- run: npm i
41-
# depcheck
42-
- run: depcheck .
4336
# lint:
44-
- run: npm run lint
37+
- run: npm run ci:lint
4538
# test!
4639
- run: |
4740
export PATH="$HOME/.poetry/bin:$PATH"
4841
export LC_ALL=C.UTF-8
4942
export LANG=C.UTF-8
5043
npm run test
44+
- store_test_results:
45+
path: ~/reports
46+
- store_artifacts:
47+
path: ~/reports

0 commit comments

Comments
 (0)