Skip to content

[Snyk] Upgrade axios from 0.27.2 to 1.7.2 #6

[Snyk] Upgrade axios from 0.27.2 to 1.7.2

[Snyk] Upgrade axios from 0.27.2 to 1.7.2 #6

Workflow file for this run

name: Prettier & Lint Checker
on:
pull_request:
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Run linter
run: npm run lint
- name: Run prettier
run: npm run format-check