name: Automated Tests on: push: branches: - master - next/* pull_request: branches: - master - next/* concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.head.sha || github.sha }} cancel-in-progress: true env: NODEJS_VERSION: "24.11.0" ENVIRONMENT: dev-unstable jobs: test: name: Run Automated Tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: submodules: recursive - uses: actions/setup-node@v4 with: node-version: ${{ env.NODEJS_VERSION }} - name: Build And Run Tests run: make test