Skip to content

Bump axios from 0.21.2 to 0.28.0 #162

Bump axios from 0.21.2 to 0.28.0

Bump axios from 0.21.2 to 0.28.0 #162

name: Test, Lint, and Build
on: pull_request
jobs:
test-unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '14.x'
- name: Install Dependencies
run: |
npm ci
- name: Run Unit Tests
run: |
CI=true npm run test:all-unit
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: "14.x"
- name: Install Dependencies
run: |
npm ci
- name: Run Lint
run: |
npm run lint
- name: Run Format Check
run: |
npm run format:check
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: "14.x"
- name: Install Dependencies
run: |
npm ci
- name: Run Build
run: |
npm run build