Skip to content

[😎Feat] Auth 기본 Domain 추가 #67

[😎Feat] Auth 기본 Domain 추가

[😎Feat] Auth 기본 Domain 추가 #67

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
- develop
- 'feat/*'
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Add .env file
run: echo "${{ secrets.ENV_VARS }}" > .env.local
- name: Install dependencies
run: npm ci
- name: Build NestJS project
run: npm run build
- name: Run tests
run: npm test