Login 페이지 UI (#20) #20
Workflow file for this run
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: check-if-mergeable | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
branches: | |
- 'develop' | |
jobs: | |
build: | |
name: check-if-mergeable | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
# node 세팅 | |
- name: Init node | |
uses: actions/[email protected] | |
with: | |
node-version: '18.17.1' | |
cache: 'yarn' | |
- name: Set Yarn Version | |
id: set-version | |
run: | | |
yarn set version 4.0.2 | |
echo "YARN_VERSION=$(yarn -v)" >> $GITHUB_OUTPUT | |
- name: Yarn Cache - PnP | |
uses: actions/cache@v2 | |
with: | |
path: | | |
.yarn/cache | |
.pnp.* | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}-${{ steps.set-version.outputs.YARN_VERSION }} | |
restore-keys: | | |
${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}- | |
- name: Install dependencies | |
run: yarn install | |
- name: check-unit-test | |
run: yarn test ./src |