Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

111 changes: 0 additions & 111 deletions .eslintrc.cjs

This file was deleted.

10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ jobs:
node-version: '22.x'
registry-url: 'https://registry.npmjs.org'

- uses: oven-sh/setup-bun@v2

- name: Get GitHub App Token
id: github-token
uses: actions/create-github-app-token@v1
Expand All @@ -72,15 +74,15 @@ jobs:
private-key: ${{ secrets.kyBOT_PRIVATE_KEY }}

- name: Cache Dependencies
id: yarn_cache
id: bun_cache
uses: actions/cache@v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-modules-${{ hashFiles('**/bun.lockb') }}

- name: Install Dependencies
if: steps.yarn_cache.outputs.cache-hit != 'true'
run: yarn install
if: steps.bun_cache.outputs.cache-hit != 'true'
run: bun install --frozen-lockfile

- name: Get Version-Up Type
id: ver_up_type
Expand Down
28 changes: 18 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,18 @@ jobs:
with:
node-version: '22'

- uses: oven-sh/setup-bun@v2

- name: Cache Dependencies
id: yarn_cache
id: bun_cache
uses: actions/cache@v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-modules-${{ hashFiles('**/bun.lockb') }}

- name: Install Dependencies
if: steps.yarn_cache.outputs.cache-hit != 'true'
run: yarn install
if: steps.bun_cache.outputs.cache-hit != 'true'
run: bun install --frozen-lockfile


eslint:
Expand All @@ -42,14 +44,16 @@ jobs:
with:
node-version: '22'

- uses: oven-sh/setup-bun@v2

- name: Restore Cache Dependencies
uses: actions/cache@v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-modules-${{ hashFiles('**/bun.lockb') }}

- name: Eslint Check
run: yarn eslint
run: bun run lint


vitest:
Expand All @@ -63,14 +67,16 @@ jobs:
with:
node-version: '22'

- uses: oven-sh/setup-bun@v2

- name: Restore Cache Dependencies
uses: actions/cache@v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-modules-${{ hashFiles('**/bun.lockb') }}

- name: Vitest Check
run: yarn test
run: bun run test


build:
Expand All @@ -84,11 +90,13 @@ jobs:
with:
node-version: '22'

- uses: oven-sh/setup-bun@v2

- name: Restore Cache Dependencies
uses: actions/cache@v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-modules-${{ hashFiles('**/bun.lockb') }}

- name: Build Check
run: yarn build
run: bun run build
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
node_modules
dist
.yarn/*
!.yarn/releases
dist
5 changes: 1 addition & 4 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
vite.config.ts
.gitignore
.github
.eslintrc.cjs
.eslintignore
eslint.config.js
.gitattributes
.yarnrc.yml

.idea
.yarn
src

# vitest
Expand Down
Loading