mirror of
https://github.com/astral-sh/setup-uv.git
synced 2026-03-29 07:16:52 +00:00
Replace inline compile args with tsconfig (#824)
This commit is contained in:
parent
447e6d02b1
commit
868d1f74d9
2 changed files with 10 additions and 1 deletions
9
.github/scripts/tsconfig.json
vendored
Normal file
9
.github/scripts/tsconfig.json
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"module": "nodenext",
|
||||
"moduleResolution": "nodenext",
|
||||
"target": "es2022",
|
||||
"types": ["node"]
|
||||
},
|
||||
"include": ["check-all-tests-passed-needs.ts"]
|
||||
}
|
||||
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -38,7 +38,7 @@ jobs:
|
|||
npm run all
|
||||
- name: Check all jobs are in all-tests-passed.needs
|
||||
run: |
|
||||
tsc --module nodenext --moduleResolution nodenext --target es2022 check-all-tests-passed-needs.ts
|
||||
tsc -p tsconfig.json
|
||||
node check-all-tests-passed-needs.js
|
||||
working-directory: .github/scripts
|
||||
- name: Make sure no changes from linters are detected
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue