Skip to content

Commit

Permalink
ci(cli): Run tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
akash1810 committed Dec 13, 2023
1 parent 5b476bb commit 4193945
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ jobs:
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: lint + compile
- name: lint, test, compile
working-directory: cli
run: |
deno fmt --check
deno test
deno task compile
test:
runs-on: ubuntu-latest
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ jobs:
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: lint + compile
- name: lint, test, compile
working-directory: cli
run: |
deno fmt --check
deno test
deno task compile
- name: release
working-directory: cli/dist
Expand Down

0 comments on commit 4193945

Please sign in to comment.