mirror of
https://github.com/ThisIsBenny/wishlist-app.git
synced 2025-05-13 18:07:43 +00:00
...
Signed-off-by: Benny Samir Hierl <bennysamir@posteo.de>
This commit is contained in:
parent
0e04b91f15
commit
bc1458d5a0
4 changed files with 5 additions and 5 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -36,8 +36,8 @@ jobs:
|
||||||
if: success() || failure()
|
if: success() || failure()
|
||||||
with:
|
with:
|
||||||
name: Vitest Tests
|
name: Vitest Tests
|
||||||
path: reports/unittest.xml
|
path: reports/unittest.json
|
||||||
reporter: jest-junit
|
reporter: mocha-json
|
||||||
docker:
|
docker:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs:
|
needs:
|
||||||
|
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -30,4 +30,4 @@ dist/
|
||||||
coverage
|
coverage
|
||||||
.env
|
.env
|
||||||
data
|
data
|
||||||
reports/*.xml
|
reports/*
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
"build:backend": "prisma generate && tsc -p tsconfig.backend.json --outDir dist",
|
"build:backend": "prisma generate && tsc -p tsconfig.backend.json --outDir dist",
|
||||||
"preview": "vite preview --port 5050",
|
"preview": "vite preview --port 5050",
|
||||||
"test:unit": "vitest --environment jsdom",
|
"test:unit": "vitest --environment jsdom",
|
||||||
"test:unit:ci": "vitest --environment jsdom --run --reporter=junit",
|
"test:unit:ci": "vitest --environment jsdom --run --reporter=json",
|
||||||
"coverage": "vitest run --environment jsdom --coverage",
|
"coverage": "vitest run --environment jsdom --coverage",
|
||||||
"typecheck": "vue-tsc --noEmit",
|
"typecheck": "vue-tsc --noEmit",
|
||||||
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
||||||
|
|
|
@ -21,6 +21,6 @@ export default defineConfig({
|
||||||
outDir: 'dist/static',
|
outDir: 'dist/static',
|
||||||
},
|
},
|
||||||
test: {
|
test: {
|
||||||
outputFile: 'reports/unittest.xml',
|
outputFile: 'reports/unittest.json',
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Reference in a new issue