SP-939: fix of warning: ZipArchive::close(): Failure to create temporary file: No such file or directory #2
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: Test | |
on: [push, pull_request] | |
env: | |
NODE_VERSION: 18 | |
jobs: | |
lint: | |
name: ESLint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Run linter | |
run: | | |
composer config --no-plugins allow-plugins.dealerdirect/phpcodesniffer-composer-installer true | |
composer require magento/magento-coding-standard --dev | |
cd vendor/magento/magento-coding-standard | |
npm install | |
npm run eslint -- ../../../view |