From 3702488069d375eb17516d7121318648a91e89cd Mon Sep 17 00:00:00 2001 From: Ondra Chaloupka Date: Thu, 30 Nov 2023 16:05:52 +0100 Subject: [PATCH] [gh actions] base check goes with lint&test --- .github/workflows/typescript-lint.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/typescript-lint.yml b/.github/workflows/typescript-lint.yml index 3efa5a9b..435d7e4c 100644 --- a/.github/workflows/typescript-lint.yml +++ b/.github/workflows/typescript-lint.yml @@ -1,4 +1,4 @@ -name: Lint check +name: Cargo lint and test on: push: @@ -7,7 +7,7 @@ on: branches: [ main ] jobs: - lint: + lint-and-test: runs-on: ubuntu-latest timeout-minutes: 30 steps: @@ -30,3 +30,4 @@ jobs: - run: pnpm install - run: pnpm lint + - run: pnpm test:cargo