8000 Bump ejs, @11ty/eleventy, @surma/rollup-plugin-off-main-thread and workbox-build · majacQ/web.dev@2fb29cd · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Bump ejs, @11ty/eleventy, @surma/rollup-plugin-off-main-thread and workbox-build #30

Bump ejs, @11ty/eleventy, @surma/rollup-plugin-off-main-thread and workbox-build

Bump ejs, @11ty/eleventy, @surma/rollup-plugin-off-main-thread and workbox-build #30

Workflow file for this run

name: Percy
# By default, runs when a pull_request's activity type is opened, synchronize,
# or reopened
on:
push:
branches:
- master
paths:
- 'src/**.js'
- 'shared/**.js'
- '!src/site/_data/countries.js'
- 'package.json'
- '**.njk'
- '**.scss'
pull_request:
paths:
- 'src/**.js'
- 'shared/**.js'
- '!src/site/_data/countries.js'
- 'package.json'
- '**.njk'
- '**.scss'
jobs:
percy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1.0.0
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Cache node_modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install
run: npm ci
- name: Percy
env:
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
run: npm run percy
1646
0