Skip to content

Commit d531d5a

Browse files
committed
feat: run CI checks before release
1 parent dcfa9a3 commit d531d5a

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches: [main]
66
pull_request:
77
branches: [main]
8+
workflow_call:
89

910
jobs:
1011
lint:

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,13 @@ permissions:
1717
contents: read
1818

1919
jobs:
20+
ci:
21+
name: CI
22+
uses: ./.github/workflows/ci.yml
23+
2024
release:
2125
name: Semantic Release
26+
needs: [ci]
2227
runs-on: ubuntu-latest
2328
concurrency:
2429
group: release

0 commit comments

Comments
 (0)