Skip to content

Commit 1bec8d2

Browse files
committed
fix: actions
1 parent 87d9561 commit 1bec8d2

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Diff for: .github/workflows/test.yml

+6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
14+
with:
15+
fetch-depth: 0
16+
clear: true
1417

1518
- name: Setup Node.js
1619
uses: actions/setup-node@v4
@@ -33,6 +36,9 @@ jobs:
3336
runs-on: ubuntu-latest
3437
steps:
3538
- uses: actions/checkout@v4
39+
with:
40+
fetch-depth: 0
41+
clear: true
3642

3743
- name: Setup Node.js
3844
uses: actions/setup-node@v4

Diff for: src/utils/server.ts

-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ export async function buildServer({ db }: { db: DB }) {
113113
description: "Development server",
114114
},
115115
],
116-
tags: [{ name: "users", description: "User related end-points" }],
117116
components: {
118117
securitySchemes: {
119118
cookieAuth: {

0 commit comments

Comments
 (0)