Skip to content

fix: 멤버 프로필 기본 이미지 수정 #2268

fix: 멤버 프로필 기본 이미지 수정

fix: 멤버 프로필 기본 이미지 수정 #2268

Workflow file for this run

name: Check
on:
pull_request:
merge_group:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'
- name: Install Packages
run: yarn install --immutable
- name: Check All
run: |
set -o pipefail
yarn check | tee check.log
- name: Print Summary
run: |
echo "## Check Result" >> $GITHUB_STEP_SUMMARY
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
echo "$(cat check.log)" >> $GITHUB_STEP_SUMMARY
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY