Skip to content

Commit

Permalink
feat: nvm 설치 및 패키지 설치 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
SaeWooKKang committed Jun 16, 2024
1 parent 0b0870f commit d4e5e1a
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: aws s3 + cloudfront CI/CD

on:
push:
branches:
- main

jobs:
Deploy:
runs-on: ubuntu-latest

steps:
- name: Node 설치
uses: actions/setup-node@v4

- name: Github Repository 파일 불러오기
uses: actions/checkout@v4

- name: nvm을 활용한 프로젝트의 Node 설치
uses: irby/setup-node-nvm@master

- name: 의존성 패키지 다운
run: |
npm install -g yarn
- name: 빌드
run: |
yarn build

0 comments on commit d4e5e1a

Please sign in to comment.