-
-
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.
* feat: 🎸 use eslint-import-resolver logic to resolve * feat: 🎸 remove unused dependencies Remove unused dependencies and update the release to use release.config.js * ci: 🎡 add linting github action * ci: 🎡 fix actions/setup-node to use semantic version
- Loading branch information
1 parent
589127a
commit 6a99344
Showing
10 changed files
with
423 additions
and
283 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,22 @@ | ||
name: Lint PR Changed Files | ||
on: | ||
# by adding a schedule task to this workflow we will automatically | ||
# begin serializing read-only runs and handling them. The cron job | ||
# below is set to run every 15 minutes, GitHub will ignore anything | ||
# under 10 minutes and run every 10 minutes anyway. | ||
schedule: | ||
- cron: '*/30 * * * *' | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
- closed | ||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: bradennapier/eslint-plus-action@v3.4.0 | ||
with: | ||
reportIgnoredFiles: true | ||
reportWarningsAsErrors: true |
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
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
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,26 @@ | ||
module.exports = { | ||
plugins: [ | ||
[ | ||
'@semantic-release/commit-analyzer', | ||
{ | ||
preset: 'conventionalcommits', | ||
}, | ||
], | ||
[ | ||
'@semantic-release/release-notes-generator', | ||
{ | ||
preset: 'conventionalcommits', | ||
}, | ||
], | ||
'@semantic-release/npm', | ||
[ | ||
// commits the changed files to git | ||
'@semantic-release/git', | ||
{ | ||
assets: ['package.json'], | ||
}, | ||
], | ||
// creates the github release | ||
'@semantic-release/github', | ||
], | ||
}; |
Oops, something went wrong.