ADS-4284 Implement rating filter #36
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 JS | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: ESLint | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
path: nosto-shopware6 | |
- name: Clone job scheduler repo | |
uses: actions/checkout@v2 | |
with: | |
repository: Nosto/shopware6-job-scheduler | |
path: nosto-shopware6/dependencies/shopware6-job-scheduler | |
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
- name: Setup PHP with Composer 2 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
extensions: dom, gd, mbstring, pdo_mysql, zip | |
coverage: xdebug | |
tools: composer:v2 | |
- name: Validate dependencies | |
working-directory: nosto-shopware6 | |
run: composer validate | |
- name: Install plugin dependencies | |
working-directory: nosto-shopware6 | |
run: | | |
npm ci | |
composer install --no-interaction | |
- name: Install Shopware dependencies | |
working-directory: nosto-shopware6 | |
run: npm run install-sw-dependencies | |
- name: Run ESLint | |
working-directory: nosto-shopware6 | |
run: | | |
npm run administration-lint | |
npm run storefront-lint |