Skip to content

Commit

Permalink
chore: ci cleanup (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zizzamia authored Feb 3, 2024
1 parent d168475 commit e8c108d
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 5 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/kit.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Kit Test / Build
name: Kit Build
on:
push:
branches: ['main']
Expand All @@ -20,9 +20,6 @@ jobs:
cache: 'npm'
- name: Kit Install dependencies
run: npm install
- name: Kit Test Check
# When fails, please check your tests
run: npm run test
- name: Kit Test Build
# When fails, please check your build
run: |
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Kit Test
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Kit Install dependencies
run: npm install
- name: Kit Test Check
# When fails, please check your tests
run: npm run test
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '0.4.3';
export const version = '0.4.4';

0 comments on commit e8c108d

Please sign in to comment.