javascript-action/.github/workflows/check-dist.yml

72 lines
1.9 KiB
YAML
Raw Normal View History

2023-11-28 05:03:31 +00:00
# In JavaScript 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.
2023-09-14 14:37:52 +00:00
#
2023-11-28 05:03:31 +00:00
# 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:
2024-02-22 14:34:06 +00:00
pull_request:
branches:
- main
push:
branches:
- main
2023-11-28 05:03:31 +00:00
permissions:
contents: read
jobs:
check-dist:
2023-09-14 14:37:52 +00:00
name: Check dist/
runs-on: ubuntu-latest
2023-09-14 14:37:52 +00:00
permissions:
contents: read
statuses: write
steps:
2023-09-14 14:37:52 +00:00
- name: Checkout
id: checkout
uses: actions/checkout@v4
2023-09-14 14:37:52 +00:00
- name: Setup Node.js
2023-11-28 05:03:31 +00:00
id: setup-node
uses: actions/setup-node@v4
with:
2023-11-28 05:03:31 +00:00
node-version-file: .node-version
2023-09-14 14:37:52 +00:00
cache: npm
2023-09-14 14:37:52 +00:00
- name: Install Dependencies
id: install
run: npm ci
2023-09-14 14:37:52 +00:00
- name: Build dist/ Directory
id: build
run: npm run bundle
2024-04-12 16:56:34 +00:00
# This will fail the workflow if the `dist/` directory is different than
# expected.
2023-11-28 05:03:31 +00:00
- name: Compare Directories
2023-09-14 14:37:52 +00:00
id: diff
run: |
2023-09-14 14:37:52 +00:00
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
2024-04-12 16:56:34 +00:00
# If `dist/` was different than expected, upload the expected version as a
# workflow artifact.
2023-11-28 05:03:31 +00:00
- if: ${{ failure() && steps.diff.outcome == 'failure' }}
name: Upload Artifact
id: upload
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/