Skip to content

Dependencies: Bump axios from 1.4.0 to 1.7.3 #1778

Dependencies: Bump axios from 1.4.0 to 1.7.3

Dependencies: Bump axios from 1.4.0 to 1.7.3 #1778

Workflow file for this run

name: CI
on: pull_request
jobs:
build:
name: Lint and Build
runs-on: ubuntu-latest
strategy:
matrix:
node-env: [ 'development', 'production' ]
env:
NODE_ENV: ${{ matrix.node-env }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/[email protected]
with:
node-version: 16
- run: yarn install
- run: yarn build
- run: yarn lint
if: ${{ matrix.node-env == 'development' }}
- run: yarn test
if: ${{ matrix.node-env == 'development' }}