Updates package @nextcloud/password-confirmation for NC 25-27 #105
Workflow file for this run
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 | |
jobs: | |
xml-linters: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Download schema | |
run: wget https://apps.nextcloud.com/schema/apps/info.xsd | |
- name: Lint info.xml | |
uses: ChristophWurst/xmllint-action@v1 | |
with: | |
xml-file: ./appinfo/info.xml | |
xml-schema-file: ./info.xsd | |
php-linters: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-versions: [7.2, 7.3, 7.4, 8.0] | |
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 | |
js-linters: | |
runs-on: ubuntu-latest | |
name: JavaScript Linter | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: Install dependencies | |
run: yarn install | |
- name: Build bundle | |
run: yarn lint:script |