We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bebac91 commit ebb23c2Copy full SHA for ebb23c2
.github/workflows/check.yml
@@ -21,6 +21,8 @@ jobs:
21
run: npm ci
22
- name: run eslint
23
run: npm run lint
24
+ - name: run build
25
+ run: npm run build
26
- name: run test
27
run: npm run test
28
package.json
@@ -6,7 +6,7 @@
6
"types": "index.d.ts",
7
"scripts": {
8
"build": "tsc",
9
- "test": "TS_DYNAMODB_ATTR_TRANSFORMER_LENIENT_TYPE_CHECK=true jest",
+ "test": "TS_DYNAMODB_ATTR_TRANSFORMER_LENIENT_TYPE_CHECK=true jest --no-cache",
10
"fmt": "find -name '*.ts' -not -path './node_modules/*' | xargs prettier --write",
11
"lint": "eslint .",
12
"release": "npm run build && npm publish"
0 commit comments