diff --git a/.github/workflows/smoke-test.yml b/.github/workflows/smoke-test.yml index 1b807a8..26d9ed2 100644 --- a/.github/workflows/smoke-test.yml +++ b/.github/workflows/smoke-test.yml @@ -1,9 +1,12 @@ name: Smoke test on: - workflow_dispatch: # Manual trigger - schedule: # Every sunday at 00:00 - - cron: "0 00 * * SUN" + push: + branches: + - '**' + # workflow_dispatch: # Manual trigger + # schedule: # Every sunday at 00:00 + # - cron: "0 00 * * SUN" jobs: test: diff --git a/eslint-remote-tester.config.ts b/eslint-remote-tester.config.ts index 7545e9d..13fb0fc 100644 --- a/eslint-remote-tester.config.ts +++ b/eslint-remote-tester.config.ts @@ -24,7 +24,7 @@ const config: Config = { parser: '@typescript-eslint/parser' } ], - extends: ['plugin:vitest/all'] + extends: ['plugin:vitest/legacy-all'] } }