diff --git a/.github/workflows/smoke-test.yml b/.github/workflows/smoke-test.yml new file mode 100644 index 000000000..34a0a457e --- /dev/null +++ b/.github/workflows/smoke-test.yml @@ -0,0 +1,24 @@ +name: Smoke test + +on: + schedule: + - cron: "0 0 * * SUN" + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 16 + - run: | + npm install + npm run build + npm link + npm link eslint-plugin-jest + - uses: AriPerkkio/eslint-remote-tester-run-action@v2 + with: + issue-title: "Results of weekly scheduled smoke test" + eslint-remote-tester-config: smoke-test/eslint-remote-tester.config.js