Skip to content

Commit f07750c

Browse files
committed
Merge remote-tracking branch 'origin/master' into fork-beta
2 parents 0aabe69 + 82c2791 commit f07750c

File tree

9 files changed

+509
-690
lines changed

9 files changed

+509
-690
lines changed

.github/dependabot.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: 2
2+
updates:
3+
# Enable npm updates
4+
- package-ecosystem: npm
5+
directory: /
6+
schedule:
7+
interval: daily
8+
# UTC
9+
time: '08:00'
10+
reviewers:
11+
- '@BitGo/internal-tools'
12+
labels:
13+
- dependencies

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
node-version: ['12', '14', '16']
13+
node-version: ['12', '14', 'lts/*']
1414

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

0 commit comments

Comments
 (0)