-
Notifications
You must be signed in to change notification settings - Fork 127
45 lines (45 loc) · 1.09 KB
/
syntax-checks.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
name: Syntax checks
on:
pull_request:
push:
branches:
- qa/**
- stable/**
jobs:
php-cs-fixer:
runs-on: ubuntu-20.04
name: PHP CS Fixer
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP 7.4
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
coverage: none
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.composer/cache/files
key: syntax-checks-${{ hashFiles('composer.lock') }}
- name: Install dependencies
run: composer install
- name: Run php-cs-fixer
run: composer php-cs-fixer -- fix --dry-run
prettier:
runs-on: ubuntu-20.04
name: Prettier
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Cache dependencies
uses: actions/cache@v2
with:
path: |
~/.npm
~/.cache/Cypress
key: npm-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
run: sudo npm install -g npm && npm ci
- name: Run Prettier
run: npm run check-format