We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf7027e commit 4fe66ceCopy full SHA for 4fe66ce
.github/workflows/smoke-test.yml
@@ -0,0 +1,24 @@
1
+name: Smoke test
2
+
3
+on:
4
+ schedule:
5
+ - cron: '0 0 * * SUN'
6
+ workflow_dispatch:
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - uses: actions/setup-node@v2
14
+ with:
15
+ node-version: 16
16
+ - run: |
17
+ npm install
18
+ npm run build
19
+ npm link
20
+ npm link eslint-plugin-jest
21
+ - uses: AriPerkkio/eslint-remote-tester-run-action@v2
22
23
+ issue-title: 'Results of weekly scheduled smoke test'
24
+ eslint-remote-tester-config: smoke-test/eslint-remote-tester.config.js
0 commit comments