forked from nightscout/cgm-remote-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into pazaan/tidepool-plugin
* dev: (33 commits) Language Matters: change "Normal" to "In Range" in glucose distribution reports Don't use dynamic scale unless entries in database (nightscout#5195) Language Update: added missing German Translations (nightscout#5172) Rename xdrip-js to xdripjs (nightscout#4959) Fix the check for environments without the units setting Move the units configuration detection to a place where it's guaranteed to catch all invocations GitHub actions build (nightscout#5168) Wording tweaks to go with nightscout#4810 (nightscout#4866) Extra info (delta and last measurement time) on clock view. (nightscout#5151) Adding to nightscout#5121 (nightscout#5126) Fix falsely suspended timeago alarms (nightscout#5170) Turkish language updates (nightscout#5192) fix devicestatus retro merge (nightscout#5193) Update node pushover library to fix crash in case Pushover service is down Fix forecast behaviour (nightscout#5160) Stop Focus Circles from Eating Entries (nightscout#5145) Fix forecast time randomly resetting to 30 minutes for openaps users Fix initial forecast point display fix forecast time max to client focusRangeMS instead of 30 min (nightscout#5143) D3 Upgrade Residual Cleanup (nightscout#5140) ...
- Loading branch information
Showing
62 changed files
with
1,863 additions
and
967 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,32 @@ | ||
name: CI test | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-16.04 | ||
|
||
strategy: | ||
matrix: | ||
node-version: [10.x, 12.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Install dependencies | ||
run: npm install | ||
- name: Install MongoDB | ||
run: | | ||
wget -qO - https://www.mongodb.org/static/pgp/server-3.6.asc | sudo apt-key add - | ||
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.6 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.6.list | ||
sudo apt-get update | ||
sudo apt-get install -y mongodb-org | ||
sudo apt-get install -y --allow-downgrades mongodb-org=3.6.14 mongodb-org-server=3.6.14 mongodb-org-shell=3.6.14 mongodb-org-mongos=3.6.14 mongodb-org-tools=3.6.14 | ||
- name: Start MongoDB | ||
run: sudo systemctl start mongod | ||
- name: Run tests | ||
run: npm run-script test-ci |
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 |
---|---|---|
|
@@ -8,8 +8,8 @@ bundle/bundle.out.js | |
.idea/ | ||
*.iml | ||
my.env | ||
my.*.env | ||
|
||
*.env | ||
static/bower_components/ | ||
.*.sw? | ||
.DS_Store | ||
|
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
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
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
Oops, something went wrong.