Skip to content

Merge branch 'main' of https://github.com/sunnybraille/sunnybraille-c… #26

Merge branch 'main' of https://github.com/sunnybraille/sunnybraille-c…

Merge branch 'main' of https://github.com/sunnybraille/sunnybraille-c… #26

Workflow file for this run

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