-
-
Notifications
You must be signed in to change notification settings - Fork 29
35 lines (30 loc) · 1.04 KB
/
extdn-unit-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: ExtDN Unit Tests
on: [push]
jobs:
unit-tests:
name: Magento 2 Unit Tests
runs-on: ubuntu-latest
env:
MAGENTO_MARKETPLACE_USERNAME: ${{ secrets.MAGENTO_MARKETPLACE_USERNAME }}
MAGENTO_MARKETPLACE_PASSWORD: ${{ secrets.MAGENTO_MARKETPLACE_PASSWORD }}
MODULE_NAME: ${{ secrets.MODULE_NAME }}
COMPOSER_NAME: ${{ secrets.COMPOSER_NAME }}
steps:
- uses: actions/checkout@v2
- name: Cache Composer dependencies
uses: actions/cache@v2
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- uses: extdn/github-actions-m2/magento-unit-tests/7.3@master
env:
MAGENTO_VERSION: '2.3.7-p3'
COMPOSER_VERSION: 1
#- uses: extdn/github-actions-m2/magento-unit-tests/7.4@master
# env:
# MAGENTO_VERSION: '2.4.3-p2'
# COMPOSER_VERSION: 2
- uses: extdn/github-actions-m2/magento-unit-tests/8.1@master
env:
MAGENTO_VERSION: '2.4.4'
COMPOSER_VERSION: 2