Skip to content

Bump axios from 1.6.2 to 1.7.5 #816

Bump axios from 1.6.2 to 1.7.5

Bump axios from 1.6.2 to 1.7.5 #816

Workflow file for this run

name: Run Docs Tests
on:
pull_request:
jobs:
docs-tests:
runs-on: ${{ matrix.os }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEBUG: "@lando/*"
strategy:
matrix:
os:
- ubuntu-24.04
node-version:
- "18"
steps:
# Install deps and cache
- name: Checkout code
uses: actions/checkout@v4
- name: Install node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm clean-install --prefer-offline --frozen-lockfile
# Run tests
- name: Run linter
run: npm run lint
- name: Test build
run: npm run docs:build