Skip to content

[버그] 블루프린트 생성 후 노드 생성 문제 (#106) #104

[버그] 블루프린트 생성 후 노드 생성 문제 (#106)

[버그] 블루프린트 생성 후 노드 생성 문제 (#106) #104

Workflow file for this run

name: Testing and Linting
on: [push]
jobs:
check-code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install packages
run: yarn install
- name: Run Lint Checks
run: yarn lint
- name: Run Tests
run: yarn test