Skip to content

Bump axios from 1.6.7 to 1.7.7 #1051

Bump axios from 1.6.7 to 1.7.7

Bump axios from 1.6.7 to 1.7.7 #1051

Workflow file for this run

# Workflow to check packages build correctly
name: Build CLI
on:
- pull_request
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js LTS
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- name: Cache turborepo output
uses: actions/cache@v3
with:
path: |
node_modules/.cache/turbo
packages/*/.turbo
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn install --frozen-lockfile --non-interactive
- name: Build packages
run: yarn build
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Depcheck
run: yarn depcheck