mirror of
https://github.com/pnpm/action-setup.git
synced 2026-06-23 04:21:04 +00:00
29 lines
671 B
YAML
29 lines
671 B
YAML
name: pr-check
|
|
|
|
on: [ pull_request ]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
check-dist:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@08c4be7e2e672a47d11bd04269e27e5f3e8529cb # v6.0.0
|
|
with:
|
|
run_install: true
|
|
version: 9
|
|
|
|
- name: Update dist/index.js
|
|
run: pnpm run build
|
|
|
|
- name: Check for uncommitted changes in dist
|
|
run: git diff --exit-code dist/index.js
|