diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6c63de5..296518b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,9 +1,12 @@ -name: Test +name: Test and Lint on: + push: + branches: + - '**' pull_request: branches: - - main + - '**' workflow_dispatch: jobs: @@ -21,6 +24,9 @@ jobs: - name: Install Dependencies run: pnpm install + - name: Run Lint + run: pnpm lint + - name: Run Test - run: pnpm run test + run: pnpm test \ No newline at end of file