Skip to content

Update check action #11

Update check action

Update check action #11

Workflow file for this run

name: Check dist
on:
push:
branches:
- main
paths:
- src/*
pull_request:
paths:
- src/*
workflow_dispatch:
jobs:
check-dist:
runs-on: ubuntu-latest
steps:
- name: Check Out
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
- name: Install Deps
run: npm ci
- name: Build
run: npm run build
- name: Comparison
run: |
if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff
exit 1
fi
id: diff
- name: Upload Artifacts
uses: actions/upload-artifact@v3
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
with:
name: dist
path: dist/