Set FFmpeg path disabled #9129
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: | |
branches: [ master, release* ] | |
pull_request: | |
branches: [ master, release* ] | |
jobs: | |
run-eslint: | |
name: Run eslint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v3 | |
- name: Setup node environment | |
uses: actions/[email protected] | |
with: | |
node-version: 12 | |
check-latest: true | |
- name: Get npm cache directory path | |
id: npm-cache-dir-path | |
run: echo "::set-output name=dir::$(npm config get cache)" | |
- name: Cache node_modules | |
uses: actions/[email protected] | |
id: npm-cache | |
with: | |
path: ${{ steps.npm-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-npm- | |
- name: Install Node.js dependencies | |
run: npm ci --no-audit | |
env: | |
SKIP_PREPARE: true | |
- name: Run eslint | |
run: npm run lint | |
run-stylelint-css: | |
name: Run stylelint (css) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v3 | |
- name: Setup node environment | |
uses: actions/[email protected] | |
with: | |
node-version: 12 | |
check-latest: true | |
- name: Get npm cache directory path | |
id: npm-cache-dir-path | |
run: echo "::set-output name=dir::$(npm config get cache)" | |
- name: Cache node_modules | |
uses: actions/[email protected] | |
id: npm-cache | |
with: | |
path: ${{ steps.npm-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-npm- | |
- name: Set up stylelint matcher | |
uses: xt0rted/stylelint-problem-matcher@v1 | |
- name: Install Node.js dependencies | |
run: npm ci --no-audit | |
env: | |
SKIP_PREPARE: true | |
- name: Run stylelint | |
run: npm run stylelint:css | |
run-stylelint-scss: | |
name: Run stylelint (scss) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v3 | |
- name: Setup node environment | |
uses: actions/[email protected] | |
with: | |
node-version: 12 | |
check-latest: true | |
- name: Get npm cache directory path | |
id: npm-cache-dir-path | |
run: echo "::set-output name=dir::$(npm config get cache)" | |
- name: Cache node_modules | |
uses: actions/[email protected] | |
id: npm-cache | |
with: | |
path: ${{ steps.npm-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-npm- | |
- name: Set up stylelint matcher | |
uses: xt0rted/stylelint-problem-matcher@v1 | |
- name: Install Node.js dependencies | |
run: npm ci --no-audit | |
env: | |
SKIP_PREPARE: true | |
- name: Run stylelint | |
run: npm run stylelint:scss |