fix(deps): update dependency axios to v0.28.0 [security] - autoclosed #1169
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: CI Check | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Node | |
uses: actions/setup-node@v2-beta | |
- name: Use Yarn Cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/yarn | |
key: yarn-${{ hashFiles(format('{0}{1}', github.workspace, '/yarn.lock')) }} | |
restore-keys: yarn- | |
- name: Yarn Install | |
run: yarn install | |
- name: Run Prettier Check | |
run: yarn format:check | |
- name: Run Linter | |
run: yarn lint | |
- name: Type Check | |
run: yarn type-check |