fix: memberId가 없다면 로그인 set을 진행하지 않도록 수정 #345
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: PR deploy | |
on: | |
pull_request: | |
branches: | |
- main | |
- develop | |
permissions: write-all | |
jobs: | |
build: | |
name: Build Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Create .env file | |
run: | | |
jq -r 'to_entries|map("\(.key)=\(.value|tostring)")|.[]' <<< "$SECRETS_CONTEXT" > .env | |
env: | |
SECRETS_CONTEXT: ${{ toJson(secrets) }} | |
- name: Install Yarn | |
run: npm i -g yarn | |
- name: Install Dependencies | |
run: yarn install | |
- name: Check lint | |
run: yarn lint | |
- name: Build | |
run: yarn build | |