Skip to content

Commit 32ba100

Browse files
authored
Merge pull request #15 from moznion/stable_ci
Make CI check stable
2 parents bebac91 + b1bdee6 commit 32ba100

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

.github/workflows/check.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
run: npm ci
2222
- name: run eslint
2323
run: npm run lint
24+
- name: run build
25+
run: npm run build
2426
- name: run test
2527
run: npm run test
2628

examples/ttypescript/package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/ttypescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"license": "MIT",
99
"devDependencies": {
10-
"@moznion/ts-dynamodb-attributes-transformer": "0.0.1",
10+
"@moznion/ts-dynamodb-attributes-transformer": "0.1.0",
1111
"ttypescript": "1.5.13"
1212
}
1313
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "index.d.ts",
77
"scripts": {
88
"build": "tsc",
9-
"test": "TS_DYNAMODB_ATTR_TRANSFORMER_LENIENT_TYPE_CHECK=true jest",
9+
"test": "TS_DYNAMODB_ATTR_TRANSFORMER_LENIENT_TYPE_CHECK=true jest --no-cache",
1010
"fmt": "find -name '*.ts' -not -path './node_modules/*' | xargs prettier --write",
1111
"lint": "eslint .",
1212
"release": "npm run build && npm publish"

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
},
2929
"exclude": [
3030
"tests",
31+
"examples",
3132
"node_modules"
3233
]
3334
}

0 commit comments

Comments
 (0)