Skip to content

[Snyk] Security upgrade axios from 1.5.1 to 1.7.4 #76

[Snyk] Security upgrade axios from 1.5.1 to 1.7.4

[Snyk] Security upgrade axios from 1.5.1 to 1.7.4 #76

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# Os: ubuntu-latest, windows-latest and macos-latest
name: Publish NPM CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run semantic-release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}