Skip to content

Commit

Permalink
chore: pages
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhirn committed Oct 1, 2024
1 parent 88c4444 commit bf95f5c
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 7 deletions.
1 change: 0 additions & 1 deletion .github/actions/playwright/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: playwright
inputs:
version:
description: Playwright version
required: false
default: v1.47.2-noble@sha256:f640d04686ef8fcca228955dc73f36b86ccd2228eda488fb2b32f3f037639f09
run:
description: Script to execute
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4

- name: Playwright
uses: ./.github/actions/playwright
with:
run: |
echo hello
echo more lines
#- name: Playwright
# uses: ./.github/actions/playwright
# with:
# run: |
# echo hello
# echo more lines

- name: Alpine
id: alpine
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Check

on:
push:

jobs:
check:
if: ${{ !startsWith(github.event.head_commit.message, 'release:') }}
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4

- name: Create report
run: |
mkdir -p reports
echo hello > reports/index.html
- name: Upload repots
uses: actions/upload-pages-artifact
with:
path: reports

0 comments on commit bf95f5c

Please sign in to comment.