diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6f37d30..5ae03ee 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,8 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: umidbekk/actions/prepare-node-repo@v2 - - run: npm run lint - - run: npx tsc + - run: npm run checks tests: runs-on: ${{ matrix.os }} diff --git a/package-lock.json b/package-lock.json index a938ba9..4848304 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "4.8.0", "license": "MIT", "dependencies": { - "@prisma/prisma-fmt-wasm": "4.8.0-62.351fb726ff78e50c7d6db6331d66d4db0e378c53" + "@prisma/prisma-fmt-wasm": "4.9.0-44.b29121153404aa8eda60ec38e41e477cc1c0ee66" }, "devDependencies": { "@types/jest": "29.2.6", @@ -1054,9 +1054,9 @@ } }, "node_modules/@prisma/prisma-fmt-wasm": { - "version": "4.8.0-62.351fb726ff78e50c7d6db6331d66d4db0e378c53", - "resolved": "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-4.8.0-62.351fb726ff78e50c7d6db6331d66d4db0e378c53.tgz", - "integrity": "sha512-OISxCNdlZ02u2NwQt99pQqpW+8elKaV0HNszJ6QVEZJZJNjnTmYIjSWycVWt+Ul3m1V0DWY4OEKCxwjpqwnjcQ==" + "version": "4.9.0-44.b29121153404aa8eda60ec38e41e477cc1c0ee66", + "resolved": "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-4.9.0-44.b29121153404aa8eda60ec38e41e477cc1c0ee66.tgz", + "integrity": "sha512-+bsLKaDvK46lVN8dv0FicmnbG5/si9A4ONXFd6sYLYX1T3+Z6H5eq+MRbXZOK993s1vJvTgD0LYcRHcieMeHDw==" }, "node_modules/@samverschueren/stream-to-observable": { "version": "0.3.1", @@ -8805,9 +8805,9 @@ } }, "@prisma/prisma-fmt-wasm": { - "version": "4.8.0-62.351fb726ff78e50c7d6db6331d66d4db0e378c53", - "resolved": "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-4.8.0-62.351fb726ff78e50c7d6db6331d66d4db0e378c53.tgz", - "integrity": "sha512-OISxCNdlZ02u2NwQt99pQqpW+8elKaV0HNszJ6QVEZJZJNjnTmYIjSWycVWt+Ul3m1V0DWY4OEKCxwjpqwnjcQ==" + "version": "4.9.0-44.b29121153404aa8eda60ec38e41e477cc1c0ee66", + "resolved": "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-4.9.0-44.b29121153404aa8eda60ec38e41e477cc1c0ee66.tgz", + "integrity": "sha512-+bsLKaDvK46lVN8dv0FicmnbG5/si9A4ONXFd6sYLYX1T3+Z6H5eq+MRbXZOK993s1vJvTgD0LYcRHcieMeHDw==" }, "@samverschueren/stream-to-observable": { "version": "0.3.1", diff --git a/package.json b/package.json index e5fdf6f..0adcd6c 100644 --- a/package.json +++ b/package.json @@ -14,10 +14,10 @@ "lib" ], "scripts": { + "checks": "npm run lint && npx tsc && npm test", "lint": "prettier . --check", "prepare": "husky install", - "prerelease": "npm ci && npm run lint && npx tsc", - "release": "np", + "release": "np --test-script checks", "tdd": "jest --watch", "test": "jest" }, @@ -25,7 +25,7 @@ "*": "prettier --write --ignore-unknown" }, "dependencies": { - "@prisma/prisma-fmt-wasm": "4.8.0-62.351fb726ff78e50c7d6db6331d66d4db0e378c53" + "@prisma/prisma-fmt-wasm": "4.9.0-44.b29121153404aa8eda60ec38e41e477cc1c0ee66" }, "devDependencies": { "@types/jest": "29.2.6",