fix: use correct docker registry and image name
Pull Request / unit-tests (pull_request) Failing after 9s
Pull Request / acceptance-tests (pull_request) Has been skipped
Pull Request / analyze-bump-type (pull_request) Has been skipped
Test / unit-tests (push) Failing after 8s

This commit is contained in:
2026-03-31 22:17:47 -07:00
parent 941d857feb
commit 3983049d2c
4 changed files with 47 additions and 73 deletions
+1 -8
View File
@@ -9,21 +9,14 @@ jobs:
unit-tests:
runs-on: ubuntu-latest
container:
image: node:20-alpine
image: docker.notsosm.art/euchre-camp-ci-runner:latest
options: --user root
# Skip if this is an auto-generated version bump commit (handled by release workflow)
if: "!contains(github.event.head_commit.message, 'chore: bump version')"
steps:
- name: Install system dependencies
run: |
apk add --no-cache bash git
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Run unit tests
run: npm run test:run