aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/dependency-updates.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/dependency-updates.yml')
-rw-r--r--.github/workflows/dependency-updates.yml6
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/dependency-updates.yml b/.github/workflows/dependency-updates.yml
index 61e22c03a..bffcb54a3 100644
--- a/.github/workflows/dependency-updates.yml
+++ b/.github/workflows/dependency-updates.yml
@@ -42,10 +42,6 @@ jobs:
42 npm i -g node-gyp@8.0.0 && npm config set node_gyp "$(which node-gyp)" 42 npm i -g node-gyp@8.0.0 && npm config set node_gyp "$(which node-gyp)"
43 - name: Install node dependencies recursively 43 - name: Install node dependencies recursively
44 run: npx lerna bootstrap 44 run: npx lerna bootstrap
45 - name: Setup git configs
46 run: |
47 git config user.name github-actions
48 git config user.email github-actions@github.com
49 - name: Update submodules, dependencies and run tests 45 - name: Update submodules, dependencies and run tests
50 run: | 46 run: |
51 echo "Updating submodules" 47 echo "Updating submodules"
@@ -59,5 +55,7 @@ jobs:
59 npm run test 55 npm run test
60 56
61 echo "Committing and pushing submodules, dependency-updates and linter changes" 57 echo "Committing and pushing submodules, dependency-updates and linter changes"
58 git config user.name github-actions
59 git config user.email github-actions@github.com
62 git commit -am "Update submodules, browserslist data updates and linter fixes [skip ci]" --no-verify || true 60 git commit -am "Update submodules, browserslist data updates and linter fixes [skip ci]" --no-verify || true
63 git push origin nightly --no-verify 61 git push origin nightly --no-verify