Skip to content

Bump typescript from 5.4.3 to 5.4.4 (#83) #169

Bump typescript from 5.4.3 to 5.4.4 (#83)

Bump typescript from 5.4.3 to 5.4.4 (#83) #169

Workflow file for this run

name: ci
on:
push:
jobs:
dirty:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm ci
- run: npm start
- name: Compare the expected and actual dist/ directories
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
test:
runs-on: ubuntu-20.04
needs: [dirty]
steps:
- uses: actions/checkout@v4
- uses: ./