Skip to content

choyoungwoo9 is learning GitHub Actions #7

choyoungwoo9 is learning GitHub Actions

choyoungwoo9 is learning GitHub Actions #7

Workflow file for this run

name: Github Actions BackEnd Test
run-name: ${{ github.actor }} is learning GitHub Actions
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
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
working-directory: ./backend
- name: Run build
run: npm run build
working-directory: ./backend