-
Notifications
You must be signed in to change notification settings - Fork 1
70 lines (57 loc) · 1.68 KB
/
ci.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-latest
name: Testing
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite
coverage: pcov
- uses: actions/setup-node@v3.1.1
name: Setup Node.js v16.x
with:
node-version: 16.x
- uses: actions/cache@v3.0.2
name: Cache Composer dependencies
with:
path: ~/.composer/cache/files
key: composer-${{ hashFiles('composer.json') }}
- uses: actions/cache@v3.0.2
name: Cache NPM dependencies
with:
path: ~/.composer/cache/files
key: npm-${{ hashFiles('package.json') }}
- uses: satackey/action-docker-layer-caching@v0.0.11
name: Cache Docker layers
continue-on-error: true
with:
key: docker-{hash}
restore-keys: |
docker-
- name: Prepare the project
run: |
cp .env.example .env
composer install --no-interaction --no-progress --prefer-dist --optimize-autoloader
npm ci
npm run build
php artisan storage:link
./sail up -d --wait
- name: Run tests
run: |
./sail phpunit --coverage-text --coverage-clover=coverage.xml
- uses: codecov/codecov-action@v3.0.0
with:
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}