Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
802d041
chore: configure dependabot to upgrade npm packages
ericcrosson-bitgo May 12, 2022
9eb7b30
Merge pull request #62 from ericcrosson-bitgo/35-configure-npm-depend…
bitgopatmcl May 13, 2022
78129ab
chore(deps-dev): bump turbo from 1.1.10 to 1.2.9
dependabot[bot] May 13, 2022
b0d0f73
Merge pull request #70 from BitGo/dependabot/npm_and_yarn/turbo-1.2.9
bitgopatmcl May 13, 2022
f42c349
chore(deps): remove @types/node
ericcrosson-bitgo May 13, 2022
8057298
ci: use lts/* to describe Node.js version
ericcrosson-bitgo May 13, 2022
cb38a58
Merge pull request #74 from ericcrosson-bitgo/remove-dependency-@type…
bitgopatmcl May 16, 2022
9395074
Merge pull request #76 from ericcrosson-bitgo/rename-status-checks
ericcrosson-bitgo May 16, 2022
ad00ac0
chore(deps): bump openapi-types from 10.0.0 to 11.0.1
dependabot[bot] May 17, 2022
be27802
Merge pull request #81 from BitGo/dependabot/npm_and_yarn/openapi-typ…
bitgopatmcl May 17, 2022
04eb73d
chore(deps-dev): bump ava from 4.0.1 to 4.2.0
dependabot[bot] May 18, 2022
e9b9b81
Merge pull request #85 from BitGo/dependabot/npm_and_yarn/ava-4.2.0
ericcrosson-bitgo May 18, 2022
9640045
chore(deps): bump typescript from 4.5.5 to 4.6.4
dependabot[bot] May 18, 2022
f8545a2
Merge pull request #86 from BitGo/dependabot/npm_and_yarn/typescript-…
ericcrosson-bitgo May 18, 2022
4c5f773
chore(deps-dev): bump mocha from 9.0.3 to 10.0.0
dependabot[bot] May 18, 2022
de0b2e4
Merge pull request #87 from BitGo/dependabot/npm_and_yarn/mocha-10.0.0
ericcrosson-bitgo May 18, 2022
d2f5a40
chore(deps-dev): bump multi-semantic-release from 2.11.3 to 2.13.0
dependabot[bot] May 18, 2022
9205009
Merge pull request #88 from BitGo/dependabot/npm_and_yarn/multi-seman…
ericcrosson-bitgo May 18, 2022
4a6520f
chore(deps-dev): bump ts-node from 10.4.0 to 10.7.0
dependabot[bot] May 18, 2022
26e4783
Merge pull request #89 from BitGo/dependabot/npm_and_yarn/ts-node-10.7.0
ericcrosson-bitgo May 18, 2022
94d1d70
chore(deps-dev): bump @types/mocha from 9.0.0 to 9.1.1
dependabot[bot] May 19, 2022
9bea772
Merge pull request #90 from BitGo/dependabot/npm_and_yarn/types/mocha…
ericcrosson-bitgo May 19, 2022
b179866
chore(deps): bump ts-morph from 13.0.3 to 14.0.0
dependabot[bot] May 19, 2022
c29b0c3
Merge pull request #91 from BitGo/dependabot/npm_and_yarn/ts-morph-14…
ericcrosson-bitgo May 19, 2022
27800b5
chore(deps-dev): bump body-parser from 1.18.2 to 1.20.0
dependabot[bot] May 19, 2022
82c2791
Merge pull request #92 from BitGo/dependabot/npm_and_yarn/body-parser…
ericcrosson-bitgo May 19, 2022
f07750c
Merge remote-tracking branch 'origin/master' into fork-beta
bitgopatmcl May 23, 2022
77734dd
fix: update turbo
bitgopatmcl May 23, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: 2
updates:
# Enable npm updates
- package-ecosystem: npm
directory: /
schedule:
interval: daily
# UTC
time: '08:00'
reviewers:
- '@BitGo/internal-tools'
labels:
- dependencies
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
node-version: ['12', '14', '16']
node-version: ['12', '14', 'lts/*']

name: Node.js ${{ matrix.node-version }}
steps:
Expand All @@ -35,7 +35,9 @@ jobs:
uses: actions/cache@v3
with:
path: node_modules/.cache
key: turbo-${{ matrix.node-version }}-${{ github.ref_name }}-${{ github.job }}-${{ github.sha }}
key:
turbo-${{ matrix.node-version }}-${{ github.ref_name }}-${{ github.job
}}-${{ github.sha }}
# According to GitHub documentation, only keys generated by the PR branch and the target branch are considered. This is
# to prevent a malicious PR from manipulating the cache to inject malicious code into unrelated branches.
# See: https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#matching-a-cache-key
Expand Down
Loading