Skip to content

fix: 프로덕션 환경에서는 특정 Origin만 참조하도록 수정 #72

fix: 프로덕션 환경에서는 특정 Origin만 참조하도록 수정

fix: 프로덕션 환경에서는 특정 Origin만 참조하도록 수정 #72

Workflow file for this run

name: Test for merged commit
on:
push:
paths-ignore:
- 'docs/**'
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- 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%