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: 4 additions & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Pull Request Checks

on: [ push ]
on:
pull_request:
branches:
- main

jobs:
code-quality:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/release-staging.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: Release on Staging

on:
push:
pull_request:
types:
- closed
branches:
- main

Expand All @@ -14,5 +16,8 @@ jobs:
uses: ./.github/workflows/test.yaml
publish:
name: Publish staging release
permissions:
id-token: write
pages: write
uses: ./.github/workflows/publish-test.yaml
needs: [code-quality, test]
2 changes: 2 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ on:
jobs:
publish:
name: Publish release
permissions:
id-token: write
uses: ./.github/workflows/publish.yaml
1 change: 0 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:

jobs:
unit-test:

runs-on: ubuntu-latest
strategy:
matrix:
Expand Down