chore(deps-dev): Bump sass from 1.68.0 to 1.69.0 in /search/search-dev-tools #5844
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 files | |
on: | |
push: | |
branches: | |
- develop | |
- staging | |
- production | |
- gh-readonly-queue/** | |
pull_request: | |
branches: | |
- develop | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
lint-php: | |
name: Lint PHP files | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source code | |
uses: actions/[email protected] | |
- name: Set up PHP | |
uses: shivammathur/[email protected] | |
with: | |
coverage: none | |
php-version: "8.0" | |
env: | |
fail-fast: 'true' | |
- name: Setup Node | |
uses: actions/[email protected] | |
with: | |
node-version: 'lts/*' | |
cache: npm | |
- name: Install PHP Dependencies | |
uses: ramsey/[email protected] | |
- name: Lint files | |
run: npm run lint | |
lint-search-dev-tools: | |
name: Lint Search Dev Tools files | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source code | |
uses: actions/[email protected] | |
- name: Setup Node | |
uses: actions/[email protected] | |
with: | |
node-version: 'lts/*' | |
cache: npm | |
cache-dependency-path: search/search-dev-tools/package-lock.json | |
- name: Install dependencies | |
run: npm ci --ignore-scripts | |
working-directory: search/search-dev-tools | |
- name: Lint files | |
run: npm run lint | |
working-directory: search/search-dev-tools |