Skip to content

Bump sass from 1.32.13 to 1.81.0 #642

Bump sass from 1.32.13 to 1.81.0

Bump sass from 1.32.13 to 1.81.0 #642

Workflow file for this run

name: Prettier
on:
push:
paths:
- "**/*.js"
- "**/*.json"
- "**/*.md"
- "**/*.scss"
- "**/*.yaml"
- ".github/workflows/prettier.yaml"
- "package.json"
- "package-lock.json"
jobs:
prettier:
name: Check formatting
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: Clone Repo
uses: actions/checkout@v2
- name: Set up Node
uses: actions/[email protected]
with:
node-version: 12
- name: Cache NPM
uses: actions/[email protected]
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
- name: Setup
run: npm ci
- name: Run Prettier Check
run: npx prettier . --check