Skip to content

Commit

Permalink
ci: add smoke test workflow (#1000)
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed Dec 26, 2021
1 parent bf7027e commit 4fe66ce
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .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

0 comments on commit 4fe66ce

Please sign in to comment.