Skip to content

build(deps-dev): bump @babel/core from 7.29.0 to 7.29.6 #75

build(deps-dev): bump @babel/core from 7.29.0 to 7.29.6

build(deps-dev): bump @babel/core from 7.29.0 to 7.29.6 #75

Workflow file for this run

name: tests
on:
workflow_call:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
test:
uses: brickhouse-tech/.github/.github/workflows/tests.yml@main
tests-complete:
name: tests
needs: [test]
runs-on: ubuntu-latest
if: always()
steps:
- name: Check test results
run: |
if [[ "${{ needs.test.result }}" != "success" ]]; then
echo "Tests failed"
exit 1
fi
echo "All tests passed"