feat: 현재 있는 브랜치의 가장 최신 커밋과 main의 최신커밋을 비교하여 변경점을 요약하는 함수 추가 #254
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: E2E Tests - Playwright | |
# on: | |
# pull_request: | |
# branches: [main, master] | |
# jobs: | |
# tests: | |
# timeout-minutes: 600 | |
# runs-on: ubuntu-latest | |
# defaults: | |
# run: | |
# working-directory: ./packages/view | |
# steps: | |
# - uses: actions/checkout@v2 # v3 is not available as of my last update in January 2022 | |
# - uses: actions/setup-node@v3 | |
# with: | |
# node-version: 18.16.0 | |
# # Add Playwright GitHub Action | |
# - name: Setup Playwright | |
# uses: microsoft/playwright-github-action@v1 | |
# - name: Install dependencies | |
# run: npm i | |
# - name: npx playwright install | |
# run: npx playwright install | |
# Temporarily Disabled until UI renewal | |
# - name: Run Playwright tests | |
# run: npm run test:e2e |