Bump execa from 6.1.0 to 9.4.0 #66
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: Snapshot versions | |
on: | |
issue_comment: | |
types: | |
- created | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
snapshot: | |
name: Snapshots 📸 | |
if: github.event.issue.pull_request && (github.event.comment.body == '/snap' || github.event.comment.body == '/snapshot' || github.event.comment.body == '📸') | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/workflows/actions/prepare | |
- name: Deploy preview versions to NPM | |
run: pnpm typescript.run ./.github/workflows/scripts/snapshot-versions.ts | |
env: | |
GITHUB_TOKEN: ${{ secrets.RELEASES_GITHUB_TOKEN }} |