Skip to content

chore(deps): bump tinyglobby from 0.2.15 to 0.2.16 #19

chore(deps): bump tinyglobby from 0.2.15 to 0.2.16

chore(deps): bump tinyglobby from 0.2.15 to 0.2.16 #19

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
permissions:
contents: read
name: ci
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [22, 24]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm config set update-notifier false
- run: npm ci --engine-strict
- run: npm test
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: lts/*
cache: npm
- run: npm config set update-notifier false
- run: npm ci
- run: npm test
dependabot-automerge:
needs: [test, windows]
if: >
github.event_name == 'pull_request' &&
github.event.pull_request.user.login == 'dependabot[bot]'
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Automerge Dependabot PRs if all checks have passed
shell: bash
env:
GH_TOKEN: ${{ github.token }}
run: |
gh pr merge --squash ${{ github.event.pull_request.number }}