-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
๐จ refactor: Github Actions ์ํฌํ๋ก ๋ฆฌํฉํ ๋ง (#218)
* ๐ฆ chore: install action ์์ฑ * ๐ฆ chore: install action ์ ์ฉ * ๐ฆ chore: vercel, chromatic ๋ฐฐํฌ ์ฃผ์ ๊ฐ๊ฐ ์ฝ๋ฉํธ ์์ฑ * ๐ fix: ์์กด์ฑ ์ค์น run ์ปค๋งจ๋์ shell ์ค์ ์ถ๊ฐ * ๐ฆ chore: react preview ๋ฐฐํฌ ํ ์คํธ emoji ๋ณ๊ฒฝ * ๐ฆ chore: CI ๋จ๊ณ์ ํ ์คํธ ์ฝ๋ ์ํ ์ถ๊ฐ * ๐ฆ chore: vercel ๊ด๋ จ env๋ฅผ job ์ชฝ์ผ๋ก ์ด๋ * ๐ฆ chore: CI ๋จ๊ณ์ ๋ฆฐํธ ๊ฒ์ฌ ์ถ๊ฐ * โ remove: CI ๋จ๊ณ์์์ lint ๋ค์ ์ ๊ฑฐ
- Loading branch information
1 parent
ee64df1
commit 0f360aa
Showing
3 changed files
with
61 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Install | ||
description: 'Node.js์ NPM ํจํค์ง๋ฅผ ์ค์นํฉ๋๋ค.' | ||
runs: | ||
using: composite | ||
steps: | ||
- name: Node.js ์ค์น | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.x | ||
cache: 'npm' | ||
|
||
- name: ์์กด์ฑ ์บ์ฑ | ||
uses: actions/cache@v3 | ||
id: npm-cache | ||
with: | ||
path: '**/node_modules' | ||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
|
||
- name: ์์กด์ฑ ์ค์น | ||
shell: bash | ||
if: steps.npm-cache.outputs.cache-hit != 'true' | ||
run: npm ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters