We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf757a9 commit f9f9bbfCopy full SHA for f9f9bbf
.github/workflows/check-db.yml
@@ -14,15 +14,19 @@ jobs:
14
uses: actions/checkout@v3
15
with:
16
ref: ${{ github.event.pull_request.head.sha }}
17
+
18
+ - uses: pnpm/action-setup@v3
19
+ with:
20
+ version: 8
21
22
- name: Install Dependencies
- run: npm install
23
+ run: pnpm install
24
25
- name: Start Service
- run: npm run dev &
26
+ run: pnpm run dev &
27
28
- name: Update api.json
- run: npm run api:download
29
+ run: pnpm run api:download
30
31
- name: Check Diff
32
run: |
package.json
@@ -4,9 +4,6 @@
4
"description": "a tool for manage API",
5
"main": "index.js",
6
"private": true,
7
- "workspaces": [
8
- "packages/*"
9
- ],
10
"dependencies": {
11
"koa": "^2.13.0",
12
"koa-body": "^4.2.0",
0 commit comments