Merge branch 'main' of https://github.com/sunnybraille/sunnybraille-c… #26
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: 🌻 Sunny Braille 클라이언트 CI 자동화 (Github Actions) | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ✔️ 레포지토리 가져오기 | |
uses: actions/checkout@v2 | |
- name: ✔️ Node.js 설치 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: ✔️ dependencies 설치 | |
working-directory: ./my-app | |
run: npm install | |
- name: ✔️ Build 테스트 | |
working-directory: ./my-app | |
run: npm run build | |
- name: ✔️ Test 실행 | |
working-directory: ./my-app | |
run: npm test |