This repository has been archived by the owner on Oct 18, 2023. It is now read-only.
chore(deps-dev): bump sass from 1.58.3 to 1.69.2 #1044
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: [ 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 |