Skip to content

feat: auto start iggy as option #22

feat: auto start iggy as option

feat: auto start iggy as option #22

Workflow file for this run

name: Check Transpiled JavaScript
on:
pull_request:
types: [ready_for_review]
branches:
- main
paths:
- "src/**/.ts"
push:
branches:
- main
paths:
- "src/**/.ts"
permissions:
contents: read
jobs:
check-dist:
name: Check dist/
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v4
with:
node-version: 22
- run: yarn
- run: yarn build
- name: Compare Directories
id: diff
run: |
if [ ! -d dist/ ]; then
echo "Expected dist/ directory does not exist. See status below:"
ls -la ./
exit 1
fi
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