Skip to content

Commit

Permalink
fix(ci): 불필요한 ci 요소 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
lsj0202 committed Sep 12, 2024
1 parent 40ce4fe commit ed371c9
Showing 1 changed file with 5 additions and 16 deletions.
21 changes: 5 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Set up Node.js
- name: Set up Node.js and pnpm
uses: actions/setup-node@v3
with:
node-version: 18

- name: Set up shell
run: |
sudo ln -sf /bin/bash /bin/sh
- name: Check out code
uses: actions/checkout@v4
with:
Expand All @@ -33,17 +29,10 @@ jobs:
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: npm install -g pnpm

- name: Check npm version
run: npm --version

- name: Check pnpm version
run: pnpm --version

- name: Install project dependencies
run: pnpm install
- name: Install pnpm and project dependencies
run: |
npm install -g pnpm
pnpm install
- name: Build
run: pnpm run build

0 comments on commit ed371c9

Please sign in to comment.