Skip to content

Commit bc1dc9d

Browse files
authored
Merge branch 'develop' into feature/validateVariables
2 parents 9b54a64 + 77e408c commit bc1dc9d

File tree

8 files changed

+82
-86
lines changed

8 files changed

+82
-86
lines changed

.github/workflows/autoupdate.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: autoupdate
2+
on:
3+
push:
4+
branches:
5+
- feature/*
6+
jobs:
7+
autoupdate:
8+
name: autoupdate
9+
runs-on: ubuntu-18.04
10+
steps:
11+
- uses: docker://chinthakagodawita/autoupdate-action:v1
12+
env:
13+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
14+
# See https://github.com/marketplace/actions/auto-update for options
15+
# DRY_RUN: "false"
16+
# PR_FILTER: "labelled"
17+
# PR_LABELS: "keep up-to-date,integration"
18+
# EXCLUDED_LABELS: "dependencies"
19+
# MERGE_MSG: "Branch was auto-updated."
20+
# RETRY_COUNT: "5"
21+
# RETRY_SLEEP: "300"
22+
# MERGE_CONFLICT_ACTION: "fail"

package-lock.json

Lines changed: 53 additions & 79 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@slack/types": "1.9.0",
2020
"@slack/webhook": "5.0.3",
2121
"angular": "latest",
22-
"aws-sdk": "2.940.0",
22+
"aws-sdk": "2.941.0",
2323
"aws-sdk-mock": "4.5.0",
2424
"beautify": "0.0.8",
2525
"chai": "4.3.4",
@@ -37,7 +37,7 @@
3737
"cordova-plugin-x-socialsharing": "6.0.3",
3838
"coveralls": "3.1.1",
3939
"cross-env": "6.0.3",
40-
"cypress": "7.5.0",
40+
"cypress": "7.6.0",
4141
"cypress-cucumber-preprocessor": "4.1.3",
4242
"cypress-failed-log": "2.9.2",
4343
"cypress-intellij-reporter": "0.0.6",

scripts/cypress_run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ else
1111
echo "success-file exists so running ghostinspector tests..."
1212
fi
1313
# shellcheck source=./log_end.sh
14-
source "$IONIC_PATH"/scripts/log_end.sh
14+
source "$IONIC_PATH"/scripts/log_end.sh "${BASH_SOURCE[0]}"

scripts/ghost-inspector.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ source "$IONIC_PATH"/scripts/log_start.sh "${BASH_SOURCE[0]}"
66
set -xe
77
npm run test:ghostinspector
88
# shellcheck source=./log_end.sh
9-
source "$IONIC_PATH"/scripts/log_end.sh
9+
source "$IONIC_PATH"/scripts/log_end.sh "${BASH_SOURCE[0]}"

scripts/heroku.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ set -xe
88
source "$SCRIPT_FOLDER"/no-root.sh
99
git push [email protected]:medimodo.git HEAD:master -f;
1010
# shellcheck source=./log_end.sh
11-
source "$IONIC_PATH"/scripts/log_end.sh
11+
source "$IONIC_PATH"/scripts/log_end.sh "${BASH_SOURCE[0]}"

scripts/mocha.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ set -xe
77
npm run types
88
npm run test:mocha
99
# shellcheck source=./log_end.sh
10-
source "$IONIC_PATH"/scripts/log_end.sh
10+
source "$IONIC_PATH"/scripts/log_end.sh "${BASH_SOURCE[0]}"

scripts/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ source "${SCRIPT_FOLDER}"/cypress_run.sh
2020
# shellcheck source=./ghost-inspector.sh
2121
source "${SCRIPT_FOLDER}"/ghost-inspector.sh
2222
# shellcheck source=./log_end.sh
23-
source "$IONIC_PATH"/scripts/log_end.sh
23+
source "$IONIC_PATH"/scripts/log_end.sh "${BASH_SOURCE[0]}"

0 commit comments

Comments
 (0)