Skip to content

chore(deps-dev): bump lint-staged from 11.2.6 to 15.2.2 #314

chore(deps-dev): bump lint-staged from 11.2.6 to 15.2.2

chore(deps-dev): bump lint-staged from 11.2.6 to 15.2.2 #314

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
quality-static:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install
- name: Linting
run: yarn lint