Skip to content

Commit 5af237c

Browse files
authored
Merge pull request #112 from sipe-team/feat/side
feat: 사이프 디자인 시스템 적용
2 parents ad159ed + 6778620 commit 5af237c

File tree

87 files changed

+1250
-405
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+1250
-405
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ env:
1414
.yarn/install-state.gz
1515
.pnp.*
1616
CACHED_BUILD_PATHS: ${{ github.workspace }}/.next
17-
DEFAULT_NODE_VERSION: "v20.12.2"
18-
DEFAULT_YARN_VERSION: "4.5.0"
17+
DEFAULT_NODE_VERSION: 'v20.12.2'
18+
DEFAULT_YARN_VERSION: '4.5.0'
1919

2020
jobs:
2121
job_install_dependencies:
@@ -28,6 +28,8 @@ jobs:
2828
uses: actions/setup-node@v4
2929
with:
3030
node-version: ${{ env.DEFAULT_NODE_VERSION }}
31+
registry-url: 'https://npm.pkg.github.com'
32+
scope: '@sipe-team'
3133

3234
- name: Set up Yarn
3335
run: |
@@ -57,6 +59,8 @@ jobs:
5759
- name: Install dependencies
5860
if: steps.cache_dependencies.outputs.cache-hit != 'true'
5961
run: yarn install --immutable
62+
env:
63+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6064

6165
outputs:
6266
dependency_cache_key: ${{ steps.compute_lockfile_hash.outputs.hash }}
@@ -87,3 +91,5 @@ jobs:
8791
- name: Check Lint
8892
if: ${{ github.event_name == 'pull_request' }}
8993
run: yarn run eslint $(git diff --name-only --diff-filter=d origin/main | grep -E '(.js$|.jsx|.ts$|.tsx$)')
94+
env:
95+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,12 @@ dist-ssr
3737

3838
# google spreadsheet data
3939
src/db/*.json
40+
41+
# playwright
42+
/test-results/
43+
/playwright-report/
44+
/blob-report/
45+
/playwright/.cache/
4046
.vercel
4147

48+
.env*.local

.pnp.cjs

Lines changed: 473 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.
Binary file not shown.
5.17 KB
Binary file not shown.
Binary file not shown.
5.2 KB
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)