-
Notifications
You must be signed in to change notification settings - Fork 2
48 lines (48 loc) · 1.67 KB
/
test-integration.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
36
37
38
39
40
41
42
43
44
45
46
47
48
name: test-integration
on:
pull_request:
push:
branches: [ master, develop ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Get Composer Cache Directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- uses: actions/cache@v2
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Init environment
run: |
cd ci/docker
docker-compose up -d
- name: Install dependencies
run: |
cd ci/docker && docker-compose exec -T stepup-ra bash -lc '
composer install
yarn
./bin/console assets:install
'
- name: Build frontend assets
run: cd ci/docker && docker-compose exec -T stepup-ra bash -lc 'yarn encore production'
- name: Run test scripts
run: cd ci/docker && docker-compose exec -T stepup-ra bash -lc ' composer test '
- name: Output log files on failure
if: failure()
run: cd ci/docker && docker-compose exec -T stepup-ra -c 'cat var/log/webtest.log'