From 7601a3855173a7facda34ddc55b3f16529722c3b Mon Sep 17 00:00:00 2001 From: Gareth Jones Date: Sun, 26 Dec 2021 17:40:10 +1300 Subject: [PATCH] ci: add smoke test workflow --- .github/workflows/smoke-test.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/smoke-test.yml diff --git a/.github/workflows/smoke-test.yml b/.github/workflows/smoke-test.yml new file mode 100644 index 000000000..04fb2f3da --- /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