Skip to content

ci: remove duplicated pipeline actions #83

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 13, 2023
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
64 changes: 0 additions & 64 deletions .github/workflows/check-pull-requests.yaml

This file was deleted.

21 changes: 14 additions & 7 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: Check Integration

on:
pull_request:
branches:
Expand All @@ -11,8 +13,16 @@ on:
- '**deployment.yaml'

jobs:
validate-pr-title:
name: Validate PR title
runs-on: ubuntu-22.04
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

integration:
name: Continuous integration
name: Continuous integration checks
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
Expand All @@ -21,15 +31,15 @@ jobs:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}

- name: Setup pnpm
uses: pnpm/[email protected]

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

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

- name: Setup pnpm
uses: pnpm/[email protected]

- name: Setup Node
uses: actions/setup-node@v3
with:
Expand All @@ -51,9 +61,6 @@ jobs:
- name: Test project
run: pnpm test

- name: Build project
run: pnpm build

- name: Build Docker image for project
uses: docker/build-push-action@v4
with:
Expand Down