Skip to content

fix : 모든 브랜치에 CI 되게 변경 #4

fix : 모든 브랜치에 CI 되게 변경

fix : 모든 브랜치에 CI 되게 변경 #4

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- "*" # 푸시된 코드가 main 브랜치일 때만 실행
jobs:
graphql-rest-api-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test