Skip to content

[Snyk] Security upgrade glob from 7.2.3 to 9.0.0 #22

[Snyk] Security upgrade glob from 7.2.3 to 9.0.0

[Snyk] Security upgrade glob from 7.2.3 to 9.0.0 #22

Workflow file for this run

name: Linux build
on:
push:
branches:
- master
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 12.x
- 14.x
- 16.x
- 17.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: Build
run: |
npm install
npm run lint
npm test
npx nyc report --reporter=text-lcov > ./lcov.info
- name: Coverage
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./lcov.info