Update test_action.yml #159
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
name: 'Check Transpiled JavaScript' | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
check-dist: | |
name: 'Check dist/' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Setup Repository (${{github.event.repository.name}})' | |
uses: actions/checkout@v4 | |
- name: 'Setup Deno' | |
uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- name: 'Build dist/ Directory' | |
run: | | |
deno task install | |
deno task build | |
- 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 | |
- name: 'Upload Artifact' | |
if: ${{ failure() && steps.diff.outcome == 'failure' }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: dist/ |