Skip to content

Bump caniuse-lite from 1.0.30001228 to 1.0.30001671 #628

Bump caniuse-lite from 1.0.30001228 to 1.0.30001671

Bump caniuse-lite from 1.0.30001228 to 1.0.30001671 #628

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