This repository was archived by the owner on Jan 30, 2025. It is now read-only.
Load Ecommerce Components via vendor directory instead of js package #336
This file contains hidden or 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: ESLint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| - trunk | |
| - develop | |
| - release/* | |
| - feature/* | |
| - add/* | |
| - update/* | |
| - fix/* | |
| - try/*' | |
| paths: | |
| - 'src/**/*.js' | |
| pull_request: | |
| types: [ opened, edited, reopened, ready_for_review ] | |
| paths: | |
| - 'src/**/*.js' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| ESLint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.1' | |
| coverage: none | |
| tools: composer, cs2pr | |
| - name: Setup workflow context | |
| id: workflow | |
| working-directory: ${{ runner.temp }} | |
| env: | |
| REPO: ${{ github.repository }} | |
| run: | | |
| mkdir dist | |
| echo "DIST=${PWD}/dist" >> $GITHUB_OUTPUT | |
| echo "PACKAGE=${REPO##*/}" >> $GITHUB_OUTPUT | |
| - name: Use Node.js 20.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| cache: 'npm' | |
| - name: Get Composer cache directory | |
| id: composer-cache | |
| run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
| - name: Cache Composer vendor directory | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ steps.composer-cache.outputs.dir }} | |
| key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-composer- | |
| - name: Show versions | |
| run: | | |
| php --version | |
| composer --version | |
| node --version | |
| npm --version | |
| - name: Validate composer.json and composer.lock | |
| run: composer validate | |
| - name: Install PHP Dependencies | |
| run: composer install --no-progress --no-dev --optimize-autoloader --prefer-dist | |
| - name: Setup Registry | |
| run: printf "\n//npm.pkg.github.com/:_authToken=${{ secrets.NEWFOLD_ACCESS_TOKEN }}" >> .npmrc | |
| - name: NPM Install | |
| run: npm ci --legacy-peer-deps | |
| - name: ESLint | |
| run: npm run lint:js |