Skip to content

backend Nest Initialization #1

backend Nest Initialization

backend Nest Initialization #1

Workflow file for this run

name: 테스트
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-20.04
working-directory: ./backend

Check failure on line 12 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / 테스트

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 12, Col: 5): Unexpected value 'working-directory'
services:
postgres:
image: postgres
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: test
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
redis:
image: redis
ports:
- 6379:6379
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20
uses: actions/setup-node@v3
- name: 의존성 설치
run: npm install
- name: 테스트
run: npm test