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

Bump semver from 5.7.1 to 5.7.2 in /ogp_functions #1426

Bump semver from 5.7.1 to 5.7.2 in /ogp_functions

Bump semver from 5.7.1 to 5.7.2 in /ogp_functions #1426

name: OGP Build and Lint
on:
pull_request:
types: [opened, synchronize]
paths-ignore:
- 'frontend/**'
- 'backend/**'
jobs:
run:
name: Build and Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
yarn-
- name: Install deps
run: cd ogp_functions && yarn
- name: Build
run: cd ogp_functions && yarn build
- name: Lint
run: cd ogp_functions && yarn lint && yarn format