зеркало из https://github.com/nextcloud/forms.git
98 строки
2.0 KiB
YAML
98 строки
2.0 KiB
YAML
name: Lint
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
- stable*
|
|
|
|
jobs:
|
|
php:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
php-versions: ['7.2', '7.3', '7.4']
|
|
|
|
name: php${{ matrix.php-versions }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up php ${{ matrix.php-versions }}
|
|
uses: shivammathur/setup-php@v1
|
|
with:
|
|
php-version: ${{ matrix.php-versions }}
|
|
coverage: none
|
|
|
|
- name: Lint
|
|
run: composer run lint
|
|
|
|
php-cs-fixer:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
php-versions: ['7.4']
|
|
|
|
name: cs php${{ matrix.php-versions }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@master
|
|
|
|
- name: Set up php
|
|
uses: shivammathur/setup-php@master
|
|
with:
|
|
php-version: ${{ matrix.php-versions }}
|
|
coverage: none
|
|
|
|
- name: Install dependencies
|
|
run: composer i
|
|
|
|
- name: Run coding standards check
|
|
run: composer run cs:check || ( echo 'Please run `composer run cs:fix` to format your code' && exit 1 )
|
|
|
|
node:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-versions: [12.x]
|
|
|
|
name: eslint node${{ matrix.node-versions }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up node ${{ matrix.node-versions }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-versions: ${{ matrix.node-versions }}
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Lint
|
|
run: npm run lint
|
|
|
|
stylelint:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-versions: [12.x]
|
|
|
|
name: stylelint node${{ matrix.node-versions }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up node ${{ matrix.node-versions }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-versions: ${{ matrix.node-versions }}
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Lint
|
|
run: npm run stylelint
|