Skip to content

build: 도커 관련 파일 생성 (#28) #11

build: 도커 관련 파일 생성 (#28)

build: 도커 관련 파일 생성 (#28) #11

Workflow file for this run

name: Test for merged commit
on:
push:
paths-ignore:
- 'docs/**'
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Cache Node.js modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- run: npm ci
- run: npm run test --maxWorkers=100%