Add test command for CI

This commit is contained in:
abefernan
2023-05-02 14:51:04 +02:00
parent 2354635546
commit a81d06c424
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ jobs:
with:
node-version: "16"
- run: npm install
- run: npm run test
- run: npm run test:ci
build:
runs-on: ubuntu-20.04
+1
View File
@@ -3,6 +3,7 @@
"scripts": {
"dev": "next dev",
"test": "jest --watch",
"test:ci": "jest",
"build": "next build",
"start": "next start",
"lint": "eslint --max-warnings 0 \"./**/*.{js,jsx,ts,tsx}\"",