Skip to content

docs: 画像の追加 #14

docs: 画像の追加

docs: 画像の追加 #14

name: Playwright Tests
on:
push:
# 実行する際はコメントアウトしてください
# branches-ignore:
# - "**"
jobs:
test:
timeout-minutes: 600
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
- uses: actions/upload-pages-artifact@v3
if: always()
with:
path: playwright-report
deploy:
if: always()
needs: test
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
pages: write
id-token: write
steps:
- uses: actions/deploy-pages@v4
id: deployment