chore(deps-dev): bump swr from 2.2.5 to 2.3.2 (#1335) #176
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: Publish Any Commit | |
on: | |
push: | |
branches: | |
- '**' | |
tags: | |
- '!**' | |
env: | |
PNPM_CACHE_FOLDER: .pnpm-store | |
SKIP_INSTALL_SIMPLE_GIT_HOOKS: 1 # Skip installing simple-git-hooks | |
permissions: {} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
# Skip job if PR is from Dependabot | |
if: github.actor != 'dependabot[bot]' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- run: npm i -g --force corepack && corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build | |
run: pnpm build | |
- run: pnpx pkg-pr-new publish --compact --pnpm |