Skip to content

bump tough-cookie version to fix security vulnerability (#107) #69

bump tough-cookie version to fix security vulnerability (#107)

bump tough-cookie version to fix security vulnerability (#107) #69

Workflow file for this run

name: Unit tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm ci
- name: Verify lint
run: npm run lint
- name: Eslint-check
run: npm run eslint-check
- name: Run unit tests
run: npm run test