Skip to content

Commit f050b62

Browse files
authored
Merge branch 'master' into feat/add-logger-pino
2 parents 62216f6 + 26c3cb3 commit f050b62

File tree

2 files changed

+14
-71
lines changed

2 files changed

+14
-71
lines changed

.github/workflows/check-pull-requests.yaml

Lines changed: 0 additions & 64 deletions
This file was deleted.

.github/workflows/integration.yaml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
name: Check Integration
2+
13
on:
24
pull_request:
35
branches:
@@ -11,8 +13,16 @@ on:
1113
- '**deployment.yaml'
1214

1315
jobs:
16+
validate-pr-title:
17+
name: Validate PR title
18+
runs-on: ubuntu-22.04
19+
steps:
20+
- uses: amannn/action-semantic-pull-request@v5
21+
env:
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
1424
integration:
15-
name: Continuous integration
25+
name: Continuous integration checks
1626
runs-on: ubuntu-22.04
1727
steps:
1828
- name: Checkout repository
@@ -21,15 +31,15 @@ jobs:
2131
fetch-depth: 0
2232
ref: ${{ github.event.pull_request.head.sha }}
2333

24-
- name: Setup pnpm
25-
uses: pnpm/[email protected]
26-
2734
- name: Set up QEMU
2835
uses: docker/setup-qemu-action@v2
2936

3037
- name: Set up Docker Buildx
3138
uses: docker/setup-buildx-action@v2
3239

40+
- name: Setup pnpm
41+
uses: pnpm/[email protected]
42+
3343
- name: Setup Node
3444
uses: actions/setup-node@v3
3545
with:
@@ -51,9 +61,6 @@ jobs:
5161
- name: Test project
5262
run: pnpm test
5363

54-
- name: Build project
55-
run: pnpm build
56-
5764
- name: Build Docker image for project
5865
uses: docker/build-push-action@v4
5966
with:

0 commit comments

Comments
 (0)