Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ on:
tags: ['v*']

jobs:
test:
uses: ./.github/workflows/test.yml

docker:
needs: test
runs-on: ubuntu-latest
permissions:
contents: read
Expand All @@ -31,6 +35,7 @@ jobs:
- uses: docker/build-push-action@v6
with:
context: .
target: runner-prod
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
4 changes: 1 addition & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches: [main]
pull_request:
branches: [main]
workflow_call:

jobs:
test:
Expand All @@ -20,6 +21,3 @@ jobs:
- run: npm ci

- run: npm run lint

- run: npm test
working-directory: server
Loading