Skip to content
This repository has been archived by the owner on Mar 9, 2024. It is now read-only.

docs: README 공지 작성 #37

docs: README 공지 작성

docs: README 공지 작성 #37

Workflow file for this run

name: UnitTest
on:
push:
branches:
- master
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install packages
run: npm ci
- name: Run unit test
run: npm run test:unit