Skip to content

CI/CD 수정

CI/CD 수정 #6

Workflow file for this run

name: "온폴 CI/CD 실습"
on:
push:
branches:
- feat/api
tags:
- release.*
jobs:
Job1:
runs-on: ubuntu-latest
steps:
- run: echo "내용...${{ github.repository }}"
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- with:
node-version: "18"
- name: "NPM 설치"
run: npm install
- name: "NPM 실행"
run: node main.js