fix: version bumping and Docker registry authentication #17

Merged
david merged 17 commits from fix/workflow-tag-exists into main 2026-04-01 05:03:16 +00:00
2 changed files with 0 additions and 49 deletions
Showing only changes of commit ff7461973a - Show all commits
-21
View File
@@ -6,29 +6,8 @@ on:
- main
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run unit tests
run: npm run test:run
analyze-bump-type:
runs-on: ubuntu-latest
needs: unit-tests
if: success()
steps:
- name: Checkout code
-28
View File
@@ -5,9 +5,6 @@ on:
branches:
- '**'
- '!main' # Skip main branch (release workflow handles that)
pull_request:
branches:
- main
jobs:
unit-tests:
@@ -28,28 +25,3 @@ jobs:
- name: Run unit tests
run: npm run test:run
# Acceptance tests that don't require DB read/write
# Only run on pull requests to main
safe-acceptance-tests:
runs-on: ubuntu-latest
needs: unit-tests
if: github.event_name == 'pull_request'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run safe acceptance tests
# These tests should not read/write to the database
# They might test UI components, routing, or static content
run: npm run test:acceptance -- --grep "safe|static|ui|component"