зеркало из https://github.com/nextcloud/forms.git
52 строки
963 B
YAML
52 строки
963 B
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
|
|
|
|
node:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-versions: [12.x]
|
|
|
|
name: 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
|