This repository has been archived by the owner on Oct 18, 2023. It is now read-only.
chore(deps-dev): bump @rollup/plugin-commonjs from 24.0.1 to 25.0.5 #1039
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: [ push ] | |
jobs: | |
yarn-install: | |
name: Yarn Install | |
runs-on: ubuntu-latest | |
steps: | |
- uses: DerYeger/yarn-setup-action@master | |
with: | |
node-version: 14 | |
lint-js: | |
name: Lint JS | |
runs-on: ubuntu-latest | |
needs: yarn-install | |
steps: | |
- uses: DerYeger/yarn-setup-action@master | |
with: | |
node-version: 14 | |
- run: yarn eslint --ext js,mjs --ignore-path .gitignore . | |
lint-style: | |
name: Lint CSS | |
runs-on: ubuntu-latest | |
needs: yarn-install | |
steps: | |
- uses: DerYeger/yarn-setup-action@master | |
with: | |
node-version: 14 | |
- run: yarn stylelint "**/*.{scss,css}" --ignore-path .gitignore | |
lint-php: | |
name: Lint PHP | |
runs-on: ubuntu-latest | |
needs: yarn-install | |
steps: | |
- uses: DerYeger/yarn-setup-action@master | |
with: | |
node-version: 14 | |
- run: yarn composer install | |
- run: yarn composer phpcs |