[web] 구글로그인 추가 #48
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: snutt-ev-webview | |
on: | |
pull_request: | |
branches: [main] | |
paths: ["apps/snutt-ev-webview/**", "packages/**"] | |
jobs: | |
build: | |
name: integration test | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./apps/snutt-ev-webview | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Install dependencies | |
run: yarn | |
- name: Install playwright | |
run: yarn playwright install --with-deps | |
- name: Build | |
run: yarn build | |
- name: Run | |
run: yarn start & | |
- name: Test | |
run: yarn e2e |