feat: initial implementation #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 in dist is up to date | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
check-dist: | |
name: check dist | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/prepare | |
- name: Build dist directory | |
id: build | |
run: pnpm run build:release | |
# 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/index.js | wc -l)" -gt "0" ]; then | |
echo "Detected uncommitted changes after build." | |
echo "You may need to run 'pnpm run build:release' locally and commit the changes." | |
echo "" | |
echo "See diff below:" | |
echo "" | |
git diff --ignore-space-at-eol --text dist/index.js | |
echo "" | |
# say this again in case the diff is long | |
echo "You may need to run 'pnpm run build:release' locally and commit the changes." | |
echo "" | |
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@v4 | |
with: | |
name: dist | |
path: dist/ |