Skip to content

add : read me

add : read me #3

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