Skip to content

Commit 05f7fcf

Browse files
committed
ci: update smoke-test workflow
1 parent b75c386 commit 05f7fcf

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

.github/workflows/smoke-test.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
name: Smoke test
22

33
on:
4-
schedule:
4+
schedule: # Every Sunday at midnight
55
- cron: '0 0 * * SUN'
6-
workflow_dispatch:
6+
workflow_dispatch: # Manual trigger
77
release:
88
types: [published]
99

10+
permissions:
11+
issues: write # To create issues for test results
12+
1013
jobs:
1114
test:
1215
runs-on: ubuntu-latest
@@ -27,12 +30,8 @@ jobs:
2730
pnpm install
2831
pnpm run build
2932
30-
- run: pnpm link
31-
working-directory: ./dist
32-
33-
- run: pnpm link eslint-plugin-testing-library
34-
3533
- uses: AriPerkkio/eslint-remote-tester-run-action@v4
3634
with:
37-
issue-title: 'Results of weekly scheduled smoke test'
38-
eslint-remote-tester-config: tests/eslint-remote-tester.config.js
35+
issue-title: 'Results of smoke test'
36+
issue-label: 'smoke-test'
37+
eslint-remote-tester-config: eslint-remote-tester.config.ts

0 commit comments

Comments
 (0)