Skip to content

Commit 4738b26

Browse files
authored
Upgrade deps (#44)
1 parent 09ba8d8 commit 4738b26

10 files changed

Lines changed: 4708 additions & 14080 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,27 @@ on:
55
jobs:
66
test:
77
name: Node.js ${{ matrix.node-version }}
8-
runs-on: macos-latest
8+
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
1111
node-version:
12-
- "10"
13-
- "12"
14-
- "14"
12+
- "20"
1513
- "*"
1614
steps:
17-
- uses: actions/checkout@v2
18-
- uses: actions/setup-node@v1
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-node@v4
1917
with:
2018
node-version: ${{ matrix.node-version }}
21-
- uses: actions/cache@v2
19+
cache: npm
20+
- uses: actions/cache@v4
2221
with:
2322
path: ~/.npm
2423
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
2524
restore-keys: |
2625
${{ runner.os }}-node-
27-
- run: npm install -g npm@7
2826
- run: npm ci
2927
- run: npm test
30-
- uses: codecov/codecov-action@v1
28+
- uses: codecov/codecov-action@v4
3129
with:
3230
name: Node.js ${{ matrix.node-version }}
31+
token: ${{ secrets.CODECOV_TOKEN }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ dist/
33
node_modules/
44
coverage/
55
npm-debug.log
6+
*.tsbuildinfo

0 commit comments

Comments
 (0)