mirror of
https://github.com/graalvm/setup-graalvm.git
synced 2025-12-06 07:48:06 +08:00
Bumps the github-actions-updates group with 1 update: [actions/checkout](https://github.com/actions/checkout).
Updates `actions/checkout` from 5.0.0 to 6.0.0
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](08c6903cd8...1af3b93b68)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 6.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: github-actions-updates
...
Signed-off-by: dependabot[bot] <support@github.com>
77 lines
2.2 KiB
YAML
77 lines
2.2 KiB
YAML
# In TypeScript actions, `dist/` is a special directory. When you reference
|
|
# an action with the `uses:` property, `dist/index.js` is the code that will be
|
|
# run. For this project, the `dist/index.js` file is transpiled from other
|
|
# source files. This workflow ensures the `dist/` directory contains the
|
|
# expected transpiled code.
|
|
#
|
|
# If this workflow is run from a feature branch, it will act as an additional CI
|
|
# check and fail if the checked-in `dist/` directory does not match what is
|
|
# expected from the build.
|
|
name: Check Transpiled JavaScript
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- dev
|
|
paths-ignore:
|
|
- '**.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
check-dist:
|
|
name: Check dist/
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
id: checkout
|
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
|
|
|
- name: Setup Node.js
|
|
id: setup-node
|
|
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
|
|
with:
|
|
node-version-file: .node-version
|
|
cache: npm
|
|
|
|
- name: Install Dependencies
|
|
id: install
|
|
run: npm ci
|
|
|
|
- name: Build dist/ Directory
|
|
id: build
|
|
run: npm run bundle
|
|
|
|
# This will fail the workflow if the `dist/` directory is different than
|
|
# expected.
|
|
- name: Compare Directories
|
|
id: diff
|
|
run: |
|
|
if [ ! -d dist/ ]; then
|
|
echo "Expected dist/ directory does not exist. See status below:"
|
|
ls -la ./
|
|
exit 1
|
|
fi
|
|
if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]; then
|
|
echo "Detected uncommitted changes after build. See status below:"
|
|
git diff --ignore-space-at-eol --text dist/
|
|
exit 1
|
|
fi
|
|
|
|
# If `dist/` was different than expected, upload the expected version as a
|
|
# workflow artifact.
|
|
- if: ${{ failure() && steps.diff.outcome == 'failure' }}
|
|
name: Upload Artifact
|
|
id: upload
|
|
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
|
|
with:
|
|
name: dist
|
|
path: dist/
|