Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork176
fix(deps): update all dependencies#129
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:Publish Any Commit | |
| on: | |
| -push | |
| -pull_request | |
| concurrency: | |
| group:${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress:true | |
| permissions: | |
| contents:read | |
| jobs: | |
| publish: | |
| runs-on:ubuntu-latest | |
| steps: | |
| -name:Checkout Repo | |
| uses:actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8# v5.0.0 | |
| -name:Setup Node.js LTS | |
| uses:actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903# v6.0.0 | |
| with: | |
| node-version:lts/* | |
| cache:yarn | |
| -name:Install dependencies | |
| run:yarn --immutable | |
| -name:Build | |
| run:yarn build | |
| -name:Publish | |
| run:yarn dlx pkg-pr-new publish --compact |