Skip to content

[Snyk] Security upgrade glob from 7.2.0 to 9.0.0 #19

[Snyk] Security upgrade glob from 7.2.0 to 9.0.0

[Snyk] Security upgrade glob from 7.2.0 to 9.0.0 #19

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test-coverage:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
# - windows-latest
# - macOS-latest
node_version:
- 12
- 14
- 16
name: Node ${{ matrix.node_version }} on ${{ matrix.os }}
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
- name: Install yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run tests
run: yarn run test
- name: Uninstall yarn
if: always()
run: npm uninstall -g yarn