Skip to content

Bump axios from 1.11.0 to 1.12.0 #172

Bump axios from 1.11.0 to 1.12.0

Bump axios from 1.11.0 to 1.12.0 #172

Workflow file for this run

name: CI
on:
pull_request:
branches: [dev]
paths-ignore:
- '**.md'
permissions:
contents: read
env:
NODE_VERSION: 24.6.0
YARN_VERSION: 4.9.3
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: ./.github/setup
with:
node-version: ${{ env.NODE_VERSION }}
yarn-version: ${{ env.YARN_VERSION }}
- name: Check formatting
run: yarn check
- name: Build shared packages
run: yarn build:shared
- name: Unit tests with coverage
run: yarn test --coverage
- name: Build
run: yarn build
- name: Check for security vulnerabilities
run: yarn npm audit