Skip to content

Update sass to version 1.69.5 #648

Update sass to version 1.69.5

Update sass to version 1.69.5 #648

Workflow file for this run

name: Linting
on:
- push
- pull_request
jobs:
eslint:
name: EsLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Export node version
id: node_version
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ steps.node_version.outputs.NODE_VERSION }}
- name: Install
run: yarn install
- name: Run yarn lint
run: yarn lint
- name: Check prettier
run: yarn prettier-check