Skip to content

build(deps): bump super-linter/super-linter from 7.2.0 to 7.2.1 #1395

build(deps): bump super-linter/super-linter from 7.2.0 to 7.2.1

build(deps): bump super-linter/super-linter from 7.2.0 to 7.2.1 #1395

Workflow file for this run

name: Percy
on: [pull_request]
jobs:
percy:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- uses: actions/setup-node@v4
with:
node-version: '14'
- run: npm install --save-dev @percy/cli
- run: |
cd docs
bundle exec jekyll build
npx percy snapshot _site/ # or any directory such as public/
env:
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}