Skip to content

Commit

Permalink
ci: configure jobs for PR
Browse files Browse the repository at this point in the history
  • Loading branch information
shyim committed Oct 24, 2024
1 parent a916447 commit 80b3a4e
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: CI
on:
push:
branches: [ "main" ]
pull_request:
workflow_dispatch:

jobs:
Expand All @@ -15,29 +16,38 @@ jobs:
- mysql:8.1
- mariadb:11
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Shopware
uses: shopware/setup-shopware@main
uses: ./.
with:
mysql-version: ${{ matrix.mysql }}
install: 'true'
path: 'sw-test'

only-storefront:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Shopware
uses: shopware/setup-shopware@main
uses: ./.
with:
install: 'true'
installStorefront: 'true'
path: 'sw-test'

only-admin:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Shopware
uses: shopware/setup-shopware@main
uses: ./.
with:
install: 'true'
installAdmin: 'true'
path: 'sw-test'



0 comments on commit 80b3a4e

Please sign in to comment.