Skip to content

Commit 58acaef

Browse files
committedMar 22, 2025
chore: fix root tsconfig.spec.json
1 parent c6d0af6 commit 58acaef

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed
 

‎.github/workflows/build.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
node-version: [20.x]
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121
- name: Use Node.js ${{ matrix.node-version }}
22-
uses: actions/setup-node@v3
22+
uses: actions/setup-node@v4
2323
with:
2424
node-version: ${{ matrix.node-version }}
2525
- name: Install dependencies
@@ -45,15 +45,13 @@ jobs:
4545
node-version: 20.x
4646

4747
steps:
48-
- uses: actions/checkout@v2
48+
- uses: actions/checkout@v4
4949
- name: Use Node.js ${{ matrix.node-version }}
50-
uses: actions/setup-node@v3
50+
uses: actions/setup-node@v4
5151
with:
5252
node-version: ${{ matrix.node-version }}
5353
- name: Install dependencies
5454
run: yarn install --immutable
55-
- name: Run build
56-
run: yarn tsc --build
5755
- name: Run test
5856
run: yarn test
5957

@@ -65,13 +63,15 @@ jobs:
6563
node-version: [20.x]
6664

6765
steps:
68-
- uses: actions/checkout@v2
66+
- uses: actions/checkout@v4
6967
- name: Use Node.js ${{ matrix.node-version }}
70-
uses: actions/setup-node@v3
68+
uses: actions/setup-node@v4
7169
with:
7270
node-version: ${{ matrix.node-version }}
7371
- name: Install dependencies
7472
run: yarn install --frozen-lockfile --network-timeout 500000
73+
- name: Run build
74+
run: yarn tsc --build
7575
- name: Run build
7676
run: yarn build
7777

@@ -85,9 +85,9 @@ jobs:
8585
node-version: [20.x]
8686

8787
steps:
88-
- uses: actions/checkout@v2
88+
- uses: actions/checkout@v4
8989
- name: Use Node.js ${{ matrix.node-version }}
90-
uses: actions/setup-node@v3
90+
uses: actions/setup-node@v4
9191
with:
9292
node-version: ${{ matrix.node-version }}
9393
- name: Install dependencies

‎tsconfig.spec.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"types": ["vitest/globals", "vitest/importMeta", "vite/client", "node", "vitest"],
99
"paths": {
1010
"@tsed/cli": ["./packages/cli/src/index.ts"],
11-
"@tsed/cli-core": ["./packages/cli-core/src/index.ts"]
11+
"@tsed/cli-core": ["./packages/cli-core/src/index.ts"],
12+
"@tsed/cli-testing": ["./packages/cli-testing/src/index.ts"]
1213
}
1314
},
1415
"include": ["vitest.*.mts", "**/vitest.*.mts", "**/*.ts"],

0 commit comments

Comments
 (0)