Skip to content
Draft

CLI #400

Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
working-directory: e2e/dependencies/consumer
run: |
cargo t
tsc bindings/* --noEmit --noUnusedLocals --strict
tsc bindings/*.ts --noEmit --noUnusedLocals --strict
- name: dependencies e2e test with default export env
working-directory: e2e/dependencies/consumer
run: |
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
- name: Test
working-directory: ts-rs
run: |
TS_RS_EXPORT_DIR=output cargo test --no-default-features
TS_RS_EXPORT_DIR=output cargo test --no-default-features --features ts-rs/export
shopt -s globstar
tsc output/**/*.ts --noEmit --noUnusedLocals --strict
rm -rf output
Expand All @@ -162,7 +162,7 @@ jobs:
- name: Test
working-directory: ts-rs
run: |
TS_RS_EXPORT_DIR=$(pwd)/output cargo test --no-default-features
TS_RS_EXPORT_DIR=$(pwd)/output cargo test --no-default-features --features ts-rs/export
shopt -s globstar
tsc output/**/*.ts --noEmit --noUnusedLocals --strict
rm -rf output
Expand All @@ -181,7 +181,7 @@ jobs:
- name: Test
working-directory: ts-rs
run: |
cargo test --no-default-features
cargo test --no-default-features --features ts-rs/export
shopt -s globstar
tsc bindings/**/*.ts --noEmit --noUnusedLocals
rm -rf bindings
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ target/
tsconfig.json

/ts-rs/tests-out
ts_rs.meta
Loading