Skip to content

Bump stylelint from 13.12.0 to 15.10.1 #268

Bump stylelint from 13.12.0 to 15.10.1

Bump stylelint from 13.12.0 to 15.10.1 #268

Workflow file for this run

name: Lint and Test
on:
push:
branches:
- develop
- main
- feature/*
- hotfix/*
- release/*
pull_request:
branches:
- develop
- main
- feature/*
- hotfix/*
- release/*
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 12
- 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 Node.js dependencies
run: yarn install
- name: Run linters
env:
CI: true
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: yarn lint