gatsby-plugin-scroll-indicator
Version:
A visual indicator of page scroll
40 lines (37 loc) • 792 B
YAML
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
defaults:
working_directory: ~/repo
docker:
- image: circleci/node:15.4.0
jobs:
prettier-check:
<<:
steps:
- checkout
- run:
name: Install deps
command: npm install
- run:
name: Run Prettier over all files
command: npm run prettier-check
build:
<<:
steps:
- attach_workspace:
at: ~/repo
- run:
name: Install deps
command: npm install
- run:
name: Build assets
command: npm build
workflows:
version: 2
test-deploy:
jobs:
- prettier-check
- build