-
Notifications
You must be signed in to change notification settings - Fork 162
37 lines (30 loc) · 1010 Bytes
/
smoke-test.yml
File metadata and controls
37 lines (30 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Smoke test
on:
schedule: # Every Sunday at midnight
- cron: '0 0 * * SUN'
workflow_dispatch: # Manual trigger
release:
types: [published]
permissions:
issues: write # To create issues for test results
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
- name: Use Node
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
cache: 'pnpm'
node-version-file: '.nvmrc'
- run: |
pnpm install
pnpm run build
- uses: AriPerkkio/eslint-remote-tester-run-action@5724813c126b48e735e7fc08f048f318c3df262d # v5
with:
issue-title: 'Results of smoke test'
issue-label: 'smoke-test'
eslint-remote-tester-config: eslint-remote-tester.config.ts