File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2525 pull-requests : write
2626 statuses : write
2727 steps :
28+ - name : Create Status Check
29+ uses : actions/github-script@v6
30+ with :
31+ script : |
32+ await github.rest.checks.create({
33+ owner: context.repo.owner,
34+ repo: context.repo.repo,
35+ name: 'E2E Tests',
36+ head_sha: '${{ inputs.sha }}',
37+ status: 'in_progress',
38+ started_at: new Date().toISOString()
39+ })
40+
2841 - name : Checkout
2942 uses : actions/checkout@v4
3043 with :
5164 pnpm install
5265 pnpm exec playwright install --with-deps
5366
54- - name : Create Status Check
55- uses : actions/github-script@v6
56- with :
57- script : |
58- await github.rest.checks.create({
59- owner: context.repo.owner,
60- repo: context.repo.repo,
61- name: 'E2E Tests',
62- head_sha: '${{ inputs.sha }}',
63- status: 'in_progress',
64- started_at: new Date().toISOString()
65- })
66-
6767 - name : Print app configs
6868 working-directory : examples/e2e
6969 run : |
You can’t perform that action at this time.
0 commit comments