Skip to content

Commit 4fe66ce

Browse files
authored
ci: add smoke test workflow (#1000)
1 parent bf7027e commit 4fe66ce

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/smoke-test.yml

+24
Original file line numberDiff line numberDiff line change
@@ -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+
with:
23+
issue-title: 'Results of weekly scheduled smoke test'
24+
eslint-remote-tester-config: smoke-test/eslint-remote-tester.config.js

0 commit comments

Comments
 (0)