build(deps): Bump http-proxy-middleware from 2.0.6 to 2.0.7 in /KakaoLoginExample #346
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
check-lib-project: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install modules | |
run: yarn | |
- name: Check linting | |
run: yarn lint | |
- name: Build typescript & flow | |
run: yarn build | |
check-example-project: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install modules | |
run: yarn | |
- name: Check linting | |
run: yarn lint | |
- name: Check typescript | |
run: yarn tsc |