feat: Add basic full tests with actions

Signed-off-by: Florian BOUILLON <f.bouillon@aptatio.com>
This commit is contained in:
2023-07-04 15:32:35 +02:00
parent cd5993c04c
commit 3669078563
5 changed files with 60 additions and 2 deletions

View File

@ -7,9 +7,13 @@
"dev": "astro dev",
"start": "node ./dist/server/entry.mjs",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"test": "vitest --coverage"
"check": "npm run check:astro && npm run check:typescript",
"check:astro": "astro check",
"check:typescript": "tsc --noEmit",
"test": "npm run test:unit && npm run test:integ",
"test:unit": "vitest --coverage",
"test:integ": "cypress run"
},
"dependencies": {
"@astrojs/node": "^5",