chore: upload package to GitHub Actions #31
Workflow file for this run
This file contains hidden or 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
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - "**/*" | |
| pull_request: | |
| types: [opened, synchronize] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Run tests | |
| run: npm run test:run | |
| - name: Lint | |
| run: npm run lint | |
| - name: Format check | |
| run: npm run format | |
| - name: Append short commit hash to package version | |
| id: version | |
| run: | | |
| SHORT_SHA="$(git rev-parse --short=7 HEAD)" | |
| BASE_VERSION="$(node -p "require('./package.json').version.replace(/-[0-9a-f]{7}$/, '')")" | |
| NEW_VERSION="${BASE_VERSION}-${SHORT_SHA}" | |
| npm version --no-git-tag-version "${NEW_VERSION}" | |
| echo "package_version=${NEW_VERSION}" >> $GITHUB_OUTPUT | |
| - name: Build | |
| run: npm run package | |
| - name: Upload package | |
| id: upload-package | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: package | |
| path: | | |
| *.vsix | |
| - name: Find installation instructions comment | |
| uses: peter-evans/find-comment@b30e6a3c0ed37e7c023ccd3f1db5c6c0b0c23aad | |
| id: find-install-comment | |
| with: | |
| issue-number: ${{ github.event.pull_request.number }} | |
| comment-author: 'github-actions[bot]' | |
| body-includes: Installing this PR package | |
| - name: Post installation instructions | |
| uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 | |
| if: ${{ github.event_name == 'pull_request' }} | |
| with: | |
| issue-number: ${{ github.event.pull_request.number }} | |
| comment-id: ${{ steps.find-install-comment.outputs.comment-id }} | |
| body: | | |
| ### Installing this PR package | |
| ```bash | |
| gh run download ${{ github.run_id }} -n package -R ${{ github.repository }} -D . | |
| code --install-extension hono-${{ steps.version.outputs.package_version }}.vsix | |
| ``` | |
| edit-mode: replace |