Skip to content

fix: ⬆️ Updating the axios version to remove the vulnerability issue #19

fix: ⬆️ Updating the axios version to remove the vulnerability issue

fix: ⬆️ Updating the axios version to remove the vulnerability issue #19

name: Pull Request
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: openssl genrsa -out private.pem 4096
- run: openssl req -new -x509 -key private.pem -out public.cer -subj '/C=IN'
- run: yarn build
- run: yarn test
- run: yarn test:unit
- run: rm -rf private.pem public.cer