Bump axios from 0.21.1 to 1.5.0 in /backend #2477
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: Linting | |
on: [push] | |
jobs: | |
format: | |
name: Prettier Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js 12.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12.x | |
- name: Prettier check | |
run: | | |
npm ci | |
npm run prettier-check | |
env: | |
CI: true | |
lint-frontend: | |
runs-on: ubuntu-latest | |
name: ESLint Frontend | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 12.x | |
- name: Lint frontend | |
run: | | |
npm ci | |
npm run lint:fe | |
lint-backend: | |
runs-on: ubuntu-latest | |
name: ESLint Backend | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 12.x | |
- name: Lint backend | |
run: | | |
npm ci | |
npm run lint:be |