chore(deps): Bump log-symbols from 4.1.0 to 6.0.0 #111
Workflow file for this run
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
name: release-canary | |
on: | |
pull_request: | |
types: | |
- labeled | |
jobs: | |
publish: | |
if: ${{ github.event.label.name == 'build' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
# Setup .npmrc file to publish to npm | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
registry-url: 'https://registry.npmjs.org' | |
# Ensure that the README is published with the package | |
- run: rm -f packages/cli/README.md && cp README.md packages/cli | |
- run: echo "PR_VERSION=0.0.0-pr.${{github.event.pull_request.number}}.$(git rev-parse --short HEAD)" >> $GITHUB_ENV | |
- run: npm ci | |
- run: npm version ${{ env.PR_VERSION }} --workspace packages/cli | |
- run: npm publish --workspace packages/cli --tag experimental | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- uses: marocchino/sticky-pull-request-comment@v2 | |
with: | |
header: PR Preview Release Published | |
hide_and_recreate: true | |
hide_classify: "OUTDATED" | |
message: | | |
🎉 Experimental release successfully published [on npm](https://npmjs.com/package/checkly/v/${{env.PR_VERSION}}) | |
``` | |
npm install checkly@${{env.PR_VERSION}} | |
``` | |