diff --git a/.github/workflows/kit.yml b/.github/workflows/build.yml similarity index 84% rename from .github/workflows/kit.yml rename to .github/workflows/build.yml index 1ec3b127df..f7c7facc3c 100644 --- a/.github/workflows/kit.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: Kit Test / Build +name: Kit Build on: push: branches: ['main'] @@ -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: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000000..ffefe7ecc6 --- /dev/null +++ b/.github/workflows/test.yml @@ -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 diff --git a/src/version.ts b/src/version.ts index 4092d855d7..18b329dafc 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const version = '0.4.3'; +export const version = '0.4.4';