Skip to content

Commit

Permalink
Merge branch 'main' into SKRF-111-design-login-page
Browse files Browse the repository at this point in the history
  • Loading branch information
colorkite10 authored Oct 23, 2023
2 parents adb75a5 + 42be47a commit 59f0357
Show file tree
Hide file tree
Showing 33 changed files with 4,040 additions and 97 deletions.
5 changes: 2 additions & 3 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ module.exports = {
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
'plugin:prettier/recommended',
'prettier',
],
ignorePatterns: ['dist'],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
plugins: ['react-refresh', 'import'],
plugins: ['react-refresh', 'import', 'prettier'],
rules: {
'no-console': 'warn',
'react-refresh/only-export-components': ['warn', { allowConstantExport: true }],
Expand Down
10 changes: 7 additions & 3 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
### 📝작업 내용

## 📝요구사항과 구현내용
- 작업 내용 1
- 작업 내용 2

### ✨코멘트
## 구현 스크린샷

## ✨pr포인트 & 궁금한 점



27 changes: 27 additions & 0 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build Test

on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

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

- name: Install dependencies
run: npm ci

- name: Build React app
run: npm run build
6 changes: 6 additions & 0 deletions .history/.github/pull_request_template_20231023130906.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
### 📝작업 내용

- 작업 내용 1
- 작업 내용 2

### ✨코멘트
10 changes: 10 additions & 0 deletions .history/.github/pull_request_template_20231023143100.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## 📝요구사항과 구현내용
- 작업 내용 1
- 작업 내용 2

## 구현 스크린샷

## ✨pr포인트 & 궁금한 점



Empty file.
27 changes: 27 additions & 0 deletions .history/.github/workflows/build-test_20231023144345.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build Test

on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

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

- name: Install dependencies
run: npm ci

- name: Build React app
run: npm run build
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged
Loading

0 comments on commit 59f0357

Please sign in to comment.