2022-12-17 17:01:41 +08:00
|
|
|
name: check dist/
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check-dist:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-02-27 15:23:34 +08:00
|
|
|
- uses: actions/checkout@v4
|
2022-12-17 17:01:41 +08:00
|
|
|
|
2023-10-26 02:36:38 +08:00
|
|
|
- name: Setup Node.js 20.x
|
2022-12-17 17:01:41 +08:00
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
2023-10-26 02:36:38 +08:00
|
|
|
node-version: 20.x
|
2022-12-17 17:01:41 +08:00
|
|
|
cache: npm
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm ci
|
|
|
|
|
|
|
|
- name: Rebuild the dist/ directory
|
|
|
|
run: npm run prepare
|
|
|
|
|
|
|
|
- name: Compare the expected and actual dist/ directories
|
|
|
|
run: |
|
2023-05-12 05:19:46 +08:00
|
|
|
if [ "$(git diff dist/ | wc -l)" -gt "0" ]; then
|
2022-12-17 17:01:41 +08:00
|
|
|
echo "Detected uncommitted changes after build. See status below:"
|
|
|
|
git diff
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
id: diff
|
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
|
|
|
|
with:
|
|
|
|
name: dist
|
|
|
|
path: dist/
|