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

67 lines
1.9 KiB
YAML
Raw Normal View History

2023-11-28 04:41:15 +00:00
# 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.
2023-08-23 17:39:49 +00:00
#
2023-11-28 04:41:15 +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:44:31 +00:00
pull_request:
branches:
- main
push:
branches:
- main
2023-10-31 23:07:09 +00:00
permissions:
contents: read
jobs:
check-dist:
2023-08-23 17:39:49 +00:00
name: Check dist/
runs-on: ubuntu-latest
steps:
2023-08-23 17:39:49 +00:00
- name: Checkout
id: checkout
uses: actions/checkout@v4
2023-08-23 17:39:49 +00:00
- name: Setup Node.js
2023-11-28 04:41:15 +00:00
id: setup-node
uses: actions/setup-node@v4
with:
2023-10-31 23:07:09 +00:00
node-version-file: .node-version
2023-08-23 17:39:49 +00:00
cache: npm
2023-08-23 17:39:49 +00:00
- name: Install Dependencies
id: install
run: npm ci
2023-08-23 17:39:49 +00:00
- name: Build dist/ Directory
id: build
run: npm run bundle
2023-11-28 04:41:15 +00:00
# This will fail the workflow if the PR wasn't created by Dependabot.
- name: Compare Directories
2023-08-23 17:39:49 +00:00
id: diff
run: |
if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]; then
2023-08-23 17:39:49 +00:00
echo "Detected uncommitted changes after build. See status below:"
git diff --ignore-space-at-eol --text dist/
exit 1
fi
2023-11-28 04:41:15 +00:00
# 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@v4
with:
name: dist
path: dist/