-
-
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.
* refactor: move to esm * CI: add .github/release.yml * CI: add setup-pnpm
- Loading branch information
Showing
10 changed files
with
135 additions
and
2,360 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
changelog: | ||
exclude: | ||
labels: | ||
- 'Type: Meta' | ||
- 'Type: Question' | ||
- 'Type: Release' | ||
|
||
categories: | ||
- title: Security Fixes | ||
labels: ['Type: Security'] | ||
- title: Breaking Changes | ||
labels: ['Type: Breaking Change'] | ||
- title: Features | ||
labels: ['Type: Feature'] | ||
- title: Bug Fixes | ||
labels: ['Type: Bug'] | ||
- title: Documentation | ||
labels: ['Type: Documentation'] | ||
- title: Refactoring | ||
labels: ['Type: Refactoring'] | ||
- title: Testing | ||
labels: ['Type: Testing'] | ||
- title: Maintenance | ||
labels: ['Type: Maintenance'] | ||
- title: CI | ||
labels: ['Type: CI'] | ||
- title: Dependency Updates | ||
labels: ['Type: Dependencies', "dependencies"] | ||
- title: Other Changes | ||
labels: ['*'] |
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,20 +1,27 @@ | ||
name: test | ||
on: [push, pull_request] | ||
concurrency: | ||
cancel-in-progress: true | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
jobs: | ||
test: | ||
timeout-minutes: 10 | ||
name: "Test on Node.js ${{ matrix.node-version }}" | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [12, 14, 16] | ||
node-version: [ 20, 22 ] | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
- name: setup pnpm | ||
uses: pnpm/action-setup@v4 | ||
- name: setup Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v2 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'pnpm' | ||
- name: Install | ||
run: yarn install | ||
run: pnpm install | ||
- name: Test | ||
run: yarn test | ||
run: pnpm test |
This file was deleted.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.