Skip to content

chore(deps): bump axios from 1.7.2 to 1.7.4 in /frontend #581

chore(deps): bump axios from 1.7.2 to 1.7.4 in /frontend

chore(deps): bump axios from 1.7.2 to 1.7.4 in /frontend #581

Workflow file for this run

name: Node.js CI
on:
push:
branches: [master]
paths:
- "frontend/**"
- ".github/workflows/node.yml"
pull_request:
branches: [master]
paths:
- "frontend/**"
- ".github/workflows/node.yml"
env:
NODE_VERSION: 20
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
cache-dependency-path: frontend/package-lock.json
- run: npm install
- run: npm run test:unit
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
cache-dependency-path: frontend/package-lock.json
- run: npm install
- run: npm run type-check
- run: NODE_ENV=production npm run lint