Skip to content

Commit e6a358d

Browse files
committed
chore: Updated dependencies.
1 parent 9444956 commit e6a358d

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,15 @@ jobs:
1414
- name: Restore cached dependencies
1515
uses: actions/cache@v2
1616
with:
17-
path: node_modules
17+
path: ~/.pnpm-store
1818
key: node-modules-${{ hashFiles('package.json') }}
1919
- name: Install dependencies
20-
run: npm install
20+
uses: pnpm/action-setup@v2
21+
with:
22+
version: latest
23+
run_install: true
2124
- name: Run Tests
22-
run: npm run ci
25+
run: pnpm run ci
2326
- name: Upload coverage to Codecov
2427
uses: codecov/codecov-action@v1
2528
with:

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
"dependencies": {
4444
"ajv": "^8.10.0",
4545
"fastify-plugin": "^3.0.1",
46-
"http-errors-enhanced": "^1.0.4"
46+
"http-errors-enhanced": "^1.0.6"
4747
},
4848
"devDependencies": {
49-
"@cowtech/eslint-config": "^8.4.0",
49+
"@cowtech/eslint-config": "^8.6.1",
5050
"@swc/cli": "^0.1.55",
5151
"@swc/core": "^1.2.150",
5252
"@types/node": "^17.0.21",
@@ -56,7 +56,7 @@
5656
"chokidar": "^3.5.3",
5757
"fastify": "^3.27.2",
5858
"prettier": "^2.5.1",
59-
"tap": "^15.2.3",
59+
"tap": "^16.0.0",
6060
"ts-node": "^10.7.0",
6161
"typescript": "^4.6.2"
6262
},

test/config/c8-ci.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
"functions": 90,
66
"lines": 90,
77
"statements": 90
8-
}
8+
}

test/config/c8-local.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
22
"reporter": ["text", "html"]
3-
}
3+
}

0 commit comments

Comments
 (0)