mirror of
https://github.com/actions/attest-build-provenance.git
synced 2025-12-16 20:30:59 +00:00
Some checks failed
Check Transpiled JavaScript / Check dist/ (push) Failing after 18s
Continuous Integration / TypeScript Tests (push) Failing after 2s
Continuous Integration / Test attest-provenance action (push) Failing after 2s
Lint Codebase / Lint Codebase (push) Failing after 1s
CodeQL / Analyze (TypeScript) (push) Failing after 16s
Public-Good Sigstore Prober / prober (push) Failing after 1s
GitHub Sigstore Prober / prober (push) Failing after 2s
Signed-off-by: Brian DeHamer <bdehamer@github.com>
67 lines
2.0 KiB
YAML
67 lines
2.0 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:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
check-dist:
|
|
name: Check dist/
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
id: checkout
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
|
|
- name: Setup Node.js
|
|
id: setup-node
|
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.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 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 build. 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@v4
|
|
with:
|
|
name: dist
|
|
path: dist/
|