Skip to content

feat: 유저 도메인 및 유저 목록 조회 어플리케이션 구현 (#7) #26

feat: 유저 도메인 및 유저 목록 조회 어플리케이션 구현 (#7)

feat: 유저 도메인 및 유저 목록 조회 어플리케이션 구현 (#7) #26

Workflow file for this run

name: Build
on:
push:
paths-ignore:
- 'docs/**'
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: '16'
- 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:cov
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}