mirror of
https://github.com/graycoreio/github-actions-magento2.git
synced 2026-06-08 19:46:41 +00:00
24 lines
508 B
YAML
24 lines
508 B
YAML
name: Cache Magento Test
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- "cache-magento/**"
|
|
- ".github/workflows/_internal-cache-magento.yaml"
|
|
- "!**/*.md"
|
|
pull_request:
|
|
branches: [main]
|
|
paths:
|
|
- "cache-magento/**"
|
|
- ".github/workflows/_internal-cache-magento.yaml"
|
|
- "!**/*.md"
|
|
|
|
jobs:
|
|
unit:
|
|
if: "!startsWith(github.head_ref, 'release-please')"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- run: bash cache-magento/test.sh
|