-
-
Notifications
You must be signed in to change notification settings - Fork 109
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
1 parent
47ec557
commit 14febcd
Showing
5 changed files
with
20,295 additions
and
11,177 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Conventional Commits | ||
on: | ||
pull_request: | ||
|
||
|
||
jobs: | ||
lint: | ||
name: https://www.conventionalcommits.org | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: beemojs/conventional-pr-action@v3 | ||
with: | ||
config-preset: angular | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,28 @@ | ||
name: Release | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
token: ${{ secrets.PAT_TOKEN }} | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: lts/* | ||
check-latest: true | ||
- run: npm install --no-package-lock | ||
name: Install dependencies | ||
- run: npm run build | ||
name: Build | ||
- run: npx semantic-release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.npm_token }} | ||
name: Release |
Oops, something went wrong.