-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
904 additions
and
487 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": ["github>poporonnet/renovate-config"] | ||
} | ||
} |
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,57 @@ | ||
name: CI | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
backend_build: | ||
name: "Build & Check (backend)" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Nodejs v20 | ||
uses: actions/setup-node@v4 | ||
|
||
- uses: pnpm/action-setup@v2 | ||
with: | ||
version: 9 | ||
|
||
- name: Cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/install/cache | ||
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: ${{ runner.os }}-pnpm- | ||
|
||
- name: Install packages | ||
run: pnpm i --frozen-lockfile | ||
- name: Code Check | ||
run: pnpm backend check | ||
- name: Lint | ||
run: pnpm backend lint | ||
- name: Test | ||
run: pnpm backend test | ||
|
||
frontend_build: | ||
name: "Build & Check (frontend)" | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup bun | ||
uses: oven-sh/setup-bun@v1 | ||
with: | ||
bun-version: latest | ||
|
||
- name: Install | ||
run: bun install --frozen-lockfile | ||
|
||
- name: Lint bun lint | ||
run: bun run --cwd packages/kcmsf lint | ||
|
||
- name: Test | ||
run: bun run --cwd packages/kcmsf test: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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "kcmsx", | ||
"private": true, | ||
"author": { | ||
"name": "Poporon Network" | ||
}, | ||
"scripts": { | ||
"backend": "pnpm -F \"kcms\"", | ||
"frontend": "pnpm -F \"kcmsf\"", | ||
"start:backend": "pnpm backend start", | ||
"start:frontend": "pnpm frontend start", | ||
"dev:backend": "pnpm backend dev", | ||
"dev:frontend": "pnpm frontend dev", | ||
"format": "pnpm frontend format && pnpm backend format", | ||
"lint": "pnpm frontend lint && pnpm backend lint", | ||
"test:backend": "pnpm backend t", | ||
"test:frontend": "pnpm frontend t" | ||
}, | ||
"version": "0.0.1", | ||
"workspaces": [ | ||
"packages/*" | ||
] | ||
} |
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
Binary file not shown.
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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.