-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: migrate to node20 and action-docs 2.0.0 (#407)
- Loading branch information
Showing
9 changed files
with
41,360 additions
and
10,900 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
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 |
---|---|---|
|
@@ -3,7 +3,6 @@ on: | |
push: | ||
branches: | ||
- main | ||
- develop | ||
pull_request: | ||
|
||
|
||
|
@@ -13,17 +12,20 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
node-version: [16, 18] | ||
node-version: [20] | ||
permissions: | ||
pull-requests: write | ||
contents: write | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-node@v3 | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # ratchet:actions/checkout@v3 | ||
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # ratchet:actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
node-version: 20 | ||
|
||
# build and test action | ||
- name: Install dependencies | ||
run: yarn install --ignore-engines | ||
run: yarn install --frozen-lockfile | ||
|
||
- name: Check format and lint | ||
run: yarn run format-check && yarn lint | ||
|
@@ -32,57 +34,52 @@ jobs: | |
run: yarn build && yarn run package | ||
|
||
- name: Update docs | ||
uses: './' | ||
- run: cat README.md | ||
uses: './' | ||
|
||
- name: Update dist in the repository | ||
if: github.ref != 'refs/heads/main' | ||
|
||
- name: Check for modified files | ||
id: changes | ||
if: matrix.node-version == 18 | ||
run: | | ||
echo "files=$(git ls-files -m)" >>$GITHUB_OUTPUT | ||
echo "count=$(git ls-files -m | wc -l)" >>$GITHUB_OUTPUT | ||
uses: stefanzweifel/git-auto-commit-action@8756aa072ef5b4a080af5dc8fef36c5d586e521d # ratchet:stefanzweifel/[email protected] | ||
with: | ||
commit_message: 'chore(ci): Updating dist and docs' | ||
file_pattern: 'dist/* README.md' | ||
|
||
- uses: actions/[email protected] | ||
if: github.event_name == 'pull_request' && steps.changes.outputs.count != 0 && matrix.node-version == 18 | ||
- name: Create Pull Request (main branch only) | ||
if: github.ref == 'refs/heads/main' | ||
uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # ratchet:peter-evans/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
const output = `#### Changes detected | ||
Please verify you have updated the files below. | ||
<details><summary>The following files are changed during the build</summary> | ||
\`\`\`${{ steps.changes.outputs.files }}\`\`\` | ||
</details> | ||
*Pusher: @${{ github.actor }}, Action: \`${{ github.event_name }}\`, Workflow: \`${{ github.workflow }}\`*`; | ||
await github.rest.issues.createComment({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
body: output | ||
}) | ||
- name: Update dist in the repository | ||
if: github.event_name != 'pull_request' && matrix.node-version == 18 | ||
uses: stefanzweifel/[email protected] | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: 'chore(ci): Updating dist and docs' | ||
title: 'chore(ci): Updating dist and docs' | ||
branch: update-docs | ||
branch-suffix: random | ||
base: ${{ github.event.pull_request.base.ref }} | ||
delete-branch: true | ||
|
||
release: | ||
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | ||
needs: build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Get app installation token | ||
uses: npalm/action-app-token@dd4bb16d91ced5659bc618705c96b822c5a42136 # v1.1.0 | ||
id: app-token | ||
with: | ||
commit_message: "chore(ci): Updating dist" | ||
file_pattern: dist/* | ||
appId: ${{ vars.APP_ID }} | ||
appPrivateKeyBase64: ${{ secrets.APP_PRIVATE_KEY_BASE64 }} | ||
appInstallationType: repo | ||
appInstallationValue: ${{ github.repository }} | ||
|
||
- name: Update readme in the repository | ||
if: github.event_name != 'pull_request' && matrix.node-version == 18 | ||
uses: stefanzweifel/[email protected] | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # ratchet:actions/checkout@v3 | ||
with: | ||
commit_message: "chore(ci): Updating README" | ||
file_pattern: README.md | ||
fetch-depth: 0 | ||
|
||
- name: Release | ||
if: | ||
contains(' | ||
refs/heads/main | ||
', github.ref) && matrix.node-version == 18 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: yarn release | ||
uses: google-github-actions/release-please-action@e0b9d1885d92e9a93d5ce8656de60e3b806e542c # ratchet:google-github-actions/release-please-action@v3 | ||
id: release | ||
with: | ||
token: ${{ steps.app-token.outputs.token }} | ||
release-type: simple | ||
next-version: v2.0.0 | ||
last-release-sha: b62a69e27ae389aa92b450f647d37409b9277bf0 |
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 |
---|---|---|
|
@@ -25,5 +25,5 @@ inputs: | |
default: LF | ||
|
||
runs: | ||
using: 'node16' | ||
using: 'node20' | ||
main: 'dist/index.js' |
Oops, something went wrong.