Skip to content

Bump glob from 8.1.0 to 10.2.4 #87

Bump glob from 8.1.0 to 10.2.4

Bump glob from 8.1.0 to 10.2.4 #87

Workflow file for this run

---
name: node-tests
on:
pull_request_target:
push:
branches:
- main
workflow_dispatch:
inputs: {}
jobs:
build:
name: Tests with Node ${{ matrix.node }}
runs-on: "ubuntu-latest"
if: |
github.actor == 'dependabot[bot]' && github.event_name == 'pull_request_target' ||
github.actor != 'dependabot[bot]'
strategy:
fail-fast: false
matrix:
node: ["18", "19"]
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: vendor/bundle
key: >
${{ runner.os }}-${{ matrix.node }}-npm-${{
hashFiles('package.json') }}
- name: Set up Node
uses: actions/setup-node@v3.6.0
with:
node-version: ${{ matrix.node }}
- name: Install npm dependencies
run: |
yarn install
- name: Run Tests
run: |
yarn test:ci
yarn lint