diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-04-17 04:12:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-17 17:12:04 +0900 |
commit | ca447d3007b091c4b45d8509f9a9064942a93f2d (patch) | |
tree | 374fb6c1554b4068050fd1d7f6c10368a705bd0e /.github | |
parent | 9f8d34620b6fa502da683f3775805bf2a5474f92 (diff) |
Update Jest testing to include Typescript (#24555)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/test-js.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/test-js.yml b/.github/workflows/test-js.yml index 6a1cacb3f..1c4958550 100644 --- a/.github/workflows/test-js.yml +++ b/.github/workflows/test-js.yml @@ -9,6 +9,8 @@ on: - '.nvmrc' - '**/*.js' - '**/*.jsx' + - '**/*.ts' + - '**/*.tsx' - '**/*.snap' - '.github/workflows/test-js.yml' @@ -19,6 +21,8 @@ on: - '.nvmrc' - '**/*.js' - '**/*.jsx' + - '**/*.ts' + - '**/*.tsx' - '**/*.snap' - '.github/workflows/test-js.yml' |