Skip to content

chore(deps-dev): bump axios from 1.15.0 to 1.16.0 in the npm_and_yarn group across 1 directory #611

chore(deps-dev): bump axios from 1.15.0 to 1.16.0 in the npm_and_yarn group across 1 directory

chore(deps-dev): bump axios from 1.15.0 to 1.16.0 in the npm_and_yarn group across 1 directory #611

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Unit Tests
strategy:
matrix:
node-version:
- 18.x
- 20.x
os:
- ubuntu-latest
- windows-latest
- macOS-latest
runs-on: ${{ matrix.os }}
steps:
- name: git checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
- name: Calculate code coverage
run: npm run coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: ${{ matrix.os }}
parallel: true
fail-on-error: false
notify:
needs:
- build
name: Code Coverage
if: ${{ success() }}
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
fail-on-error: false