Skip to content

Bump axios from 1.7.4 to 1.8.2 in the npm_and_yarn group across 1 directory #50

Bump axios from 1.7.4 to 1.8.2 in the npm_and_yarn group across 1 directory

Bump axios from 1.7.4 to 1.8.2 in the npm_and_yarn group across 1 directory #50

Workflow file for this run

name: CI
on:
push:
branches: [ 'master' ]
pull_request:
branches: [ 'master' ]
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x, 23.x, 24.x]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
if: hashFiles('yarn.lock') != ''
with:
node-version: ${{ matrix.node-version }}
- name: Install Node packages
run: yarn install --pure-lockfile
- name: Run tests
run: yarn test
- name: Run type definition tests
run: yarn test:types
linters:
name: Linters
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
if: hashFiles('yarn.lock') != ''
with:
cache: yarn
- name: Install Node packages
run: yarn install --pure-lockfile
- name: ESLint
run: yarn lint
if: always()