Skip to content

update file-type dependency to address CVE (#195) #402

update file-type dependency to address CVE (#195)

update file-type dependency to address CVE (#195) #402

Workflow file for this run

name: Build and Run Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm test
env:
CI: true
- name: Dump job context
env:
JOB_CONTEXT: ${{ toJson(matrix) }}
run: echo "$JOB_CONTEXT"
- name: Coveralls
if: matrix.node-version == '20.x'
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./docs/coverage/lcov.info