This repository has been archived by the owner on Sep 25, 2023. It is now read-only.
Bump @types/node from 18.0.6 to 20.5.1 in /ogp_functions #1456
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |