Skip to content

build(deps-dev): bump @types/node from 20.12.7 to 20.12.8 (#88) #179

build(deps-dev): bump @types/node from 20.12.7 to 20.12.8 (#88)

build(deps-dev): bump @types/node from 20.12.7 to 20.12.8 (#88) #179

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: ./