Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Bump axios from 0.27.2 to 1.6.7 #4090

Bump axios from 0.27.2 to 1.6.7

Bump axios from 0.27.2 to 1.6.7 #4090

Workflow file for this run

---
name: Test
# yamllint disable-line rule:truthy
on:
workflow_dispatch:
push:
permissions: read-all
jobs:
test_frontend:
name: test frontend
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Read .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- name: Use Node.js (.nvmrc)
uses: actions/setup-node@v3
with:
node-version: "${{ steps.nvm.outputs.NVMRC }}"
- name: Install dependencies
run: npm ci
- name: Test frontend
run: npm run test