diff options
author | 2024-07-10 00:25:39 +0100 | |
---|---|---|
committer | 2024-07-10 01:51:05 +0100 | |
commit | 57d3ba7b1f3136216b8eb43975bcbf6d4f95f664 (patch) | |
tree | b60d78669896524bfd12b9d850dea144e576e823 | |
parent | Update tests to work with new Jest version (diff) |
Update lint stage
-rw-r--r-- | .github/workflows/test_and_lint.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test_and_lint.yml b/.github/workflows/test_and_lint.yml index 83e5cc1..5745ae9 100644 --- a/.github/workflows/test_and_lint.yml +++ b/.github/workflows/test_and_lint.yml @@ -2,9 +2,9 @@ name: Test & Lint on: push: - branches: [ main ] + branches: [main] pull_request: - branches: [ main ] + branches: [main] jobs: build: @@ -44,4 +44,4 @@ jobs: run: yarn install - name: Lint - run: yarn run eslint --ext .ts,.tsx --format .config/eslint/annotations_formatter.js src/ + run: yarn run eslint --format .config/eslint/annotations_formatter.js src/ |