-
-
Notifications
You must be signed in to change notification settings - Fork 9
28 lines (26 loc) · 662 Bytes
/
main.yml
File metadata and controls
28 lines (26 loc) · 662 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
name: Regression test
on:
issue_comment:
types: [created]
jobs:
test:
if: ${{ startsWith(github.event.comment.body, 'run') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/cache@v5
with:
path: repositories
key: v2-${{ hashFiles('repositories.json') }}
- uses: actions/setup-node@v6
with:
node-version: "24"
- run: yarn
- run: yarn execute
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Reports
uses: actions/upload-artifact@v6
with:
name: Reports
path: reports