diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 14fc03e..ca8ba94 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,6 @@ jobs: strategy: matrix: node-version: - - 14.x - 16.x steps: - uses: actions/checkout@v2 diff --git a/commitlint.config.js b/commitlint.config.js index 422b194..3347cb9 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1 +1 @@ -module.exports = { extends: ['@commitlint/config-conventional'] }; +module.exports = {extends: ['@commitlint/config-conventional']}; diff --git a/release.config.js b/release.config.js index b20e12a..7277489 100644 --- a/release.config.js +++ b/release.config.js @@ -1,5 +1,5 @@ /** @type {import('semantic-release').Options} */ -const config = { +const release = { branches: 'main', plugins: [ [ @@ -60,14 +60,14 @@ const config = { }, }, ], + '@semantic-release/npm', + '@semantic-release/github', [ '@semantic-release/changelog', { changelogFile: 'CHANGELOG.md', }, ], - '@semantic-release/github', - '@semantic-release/npm', [ '@semantic-release/git', { @@ -79,4 +79,4 @@ const config = { ], }; -module.exports = config; +module.exports = release;