mirror of
https://github.com/hoverkraft-tech/compose-action.git
synced 2026-01-10 22:53:06 +08:00
Bumps the github-actions-dependencies group with 2 updates: [hoverkraft-tech/ci-github-nodejs](https://github.com/hoverkraft-tech/ci-github-nodejs) and [hoverkraft-tech/ci-github-common](https://github.com/hoverkraft-tech/ci-github-common). Updates `hoverkraft-tech/ci-github-nodejs` from 0.13.0 to 0.14.0 - [Release notes](https://github.com/hoverkraft-tech/ci-github-nodejs/releases) - [Commits](51de90c148...284b3a2256) Updates `hoverkraft-tech/ci-github-common` from 0.23.1 to 0.24.0 - [Release notes](https://github.com/hoverkraft-tech/ci-github-common/releases) - [Commits](6857ef6d10...b4883995e1) --- updated-dependencies: - dependency-name: hoverkraft-tech/ci-github-nodejs dependency-version: 0.14.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies - dependency-name: hoverkraft-tech/ci-github-common dependency-version: 0.24.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
40 lines
1.2 KiB
YAML
40 lines
1.2 KiB
YAML
name: Internal - Checks for dist
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
check-dist:
|
|
name: Check dist
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
- uses: hoverkraft-tech/ci-github-nodejs/actions/setup-node@284b3a225640afe54977ca18caf464dff1ee856b # 0.14.0
|
|
|
|
- name: Build dist/ Directory
|
|
id: package
|
|
run: npm run package
|
|
|
|
# This will fail the workflow if the PR wasn't created by Dependabot.
|
|
- name: Compare Directories
|
|
id: diff
|
|
run: |
|
|
if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]; then
|
|
echo "Detected uncommitted changes after package. See status below:"
|
|
git diff --ignore-space-at-eol --text dist/
|
|
exit 1
|
|
fi
|
|
|
|
# If `dist/` was different than expected, and this was not a Dependabot
|
|
# PR, upload the expected version as a workflow artifact.
|
|
- if: ${{ failure() && steps.diff.outcome == 'failure' }}
|
|
name: Upload Artifact
|
|
id: upload
|
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
|
with:
|
|
name: dist
|
|
path: dist/
|