Merge pull request #4147 from nextcloud/fix/check-new-file-share-25 #4815
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- stable* | |
jobs: | |
php-linters: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-versions: ['7.4', '8.0', "8.1"] | |
name: php${{ matrix.php-versions }} lint | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Set up php${{ matrix.php-versions }} | |
uses: shivammathur/setup-php@master | |
with: | |
php-version: ${{ matrix.php-versions }} | |
coverage: none | |
- name: Lint | |
run: composer run lint | |
php-cs-fixer: | |
name: php-cs check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up php | |
uses: shivammathur/[email protected] | |
with: | |
php-version: 7.4 | |
coverage: none | |
- name: Install dependencies | |
run: composer i | |
- name: Run coding standards check | |
run: composer run cs:check | |
node-linters: | |
runs-on: ubuntu-latest | |
name: ESLint | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12.x | |
- name: npm install | |
run: npm ci | |
- name: eslint | |
run: npm run lint | |
env: | |
CI: true |