Skip to content

choyoungwoo9 is building Backend #26

choyoungwoo9 is building Backend

choyoungwoo9 is building Backend #26

Workflow file for this run

name: Github Actions Backend Test
run-name: ${{ github.actor }} is building Backend
on: [push]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./backend
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run build
run: npm run build
- name: Run test
run: npm run test