Skip to content

Build(deps): Bump glob from 7.2.3 to 10.3.14 #1635

Build(deps): Bump glob from 7.2.3 to 10.3.14

Build(deps): Bump glob from 7.2.3 to 10.3.14 #1635

Workflow file for this run

name: CI
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main
jobs:
build-lint-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Read .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- name: Use Node.js
uses: actions/setup-node@v4.0.2
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
- run: yarn
- run: npm install -g codecov
- run: yarn build
- run: yarn docs
- run: yarn test
- run: codecov
- run: yarn build:dist # the dist build is only used to track bundle size delta
- run: yarn bundlesize
automerge:
needs: build-lint-test
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}