fix(AsideHeader): hide decoration node when headerDecoration=false #125
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Playwright Tests | |
on: | |
pull_request: | |
jobs: | |
test: | |
name: Test component | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/playwright:v1.45.3-jammy | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: npm ci | |
- name: Run Playwright tests | |
run: npm run playwright | |
env: | |
CI: 'true' | |
- name: Upload Playwright playwright report to GitHub Actions Artifacts | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: playwright-report | |
path: ./playwright-report | |
retention-days: 1 | |
- name: Save PR ID | |
if: always() | |
run: | | |
pr="${{ github.event.pull_request.number }}" | |
echo $pr > ./pr-id.txt | |
shell: bash | |
- name: Create PR Artifact | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pr | |
path: ./pr-id.txt |