Skip to content

Commit

Permalink
chore: add build ci (#5)
Browse files Browse the repository at this point in the history
* docs: update readme

* chore: ci github

* fix: remove prettier ci
  • Loading branch information
choipureum authored May 31, 2024
1 parent cc22679 commit 220b801
Show file tree
Hide file tree
Showing 8 changed files with 365 additions and 759 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @choipureum @Jeehay28
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI action
on:
push:
branches:
- main
pull_request:
branches:
- main
- feat/*
- setting/*
- fix/*
- doc
jobs:
run-build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code.
uses: actions/checkout@v2

- name: Check Node v
run: node -v

- name: Install Dependencies
run: yarn install --frozen-lockfile

- name: Build
run: yarn build
1 change: 1 addition & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npx commitlint --edit
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@

## 💡 서비스 개요

> **Fact Checker**페이크 뉴스 탐지 AI 서비스입니다.
> **Fact Checker**페이크뉴스 탐지 AI 서비스입니다.
<br />
1 change: 1 addition & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default { extends: ["@commitlint/config-conventional"] };
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<!-- <link rel="icon" type="image/svg+xml" href="/vite.svg" /> -->
<link rel="icon" type="image/png" href="./public/favicon.ico">
<link rel="icon" type="image/png" href="./public/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
</head>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.1",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
Expand Down
1,086 changes: 331 additions & 755 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 220b801

Please sign in to comment.