Skip to content
This repository has been archived by the owner on Sep 25, 2023. It is now read-only.

Bump puppeteer from 13.7.0 to 21.2.0 in /ogp_functions #4955

Bump puppeteer from 13.7.0 to 21.2.0 in /ogp_functions

Bump puppeteer from 13.7.0 to 21.2.0 in /ogp_functions #4955

Workflow file for this run

name: Build
on:
push:
paths:
- 'frontend/**'
- 'ogp_functions/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2-beta
with:
node-version: '14'
- name: Cache node modules
uses: actions/cache@v1
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- run: cd frontend && yarn
- run: cd frontend && yarn build
env:
CI: true