Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

chore(deps-dev): bump glob from 7.2.0 to 10.3.7 #2037

chore(deps-dev): bump glob from 7.2.0 to 10.3.7

chore(deps-dev): bump glob from 7.2.0 to 10.3.7 #2037

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
ci:
name: Continuous Integration
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Cache node_modules
id: cache-modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ matrix.node-version }}-${{ runner.OS }}-build-${{ hashFiles('yarn.lock') }}
- run: yarn install
- run: yarn test
- run: yarn build
- run: yarn lint