Skip to content

build(deps): bump glob from 10.3.4 to 10.3.5 #1078

build(deps): bump glob from 10.3.4 to 10.3.5

build(deps): bump glob from 10.3.4 to 10.3.5 #1078

Workflow file for this run

name: ci
on:
push:
branches:
- master
- next
pull_request:
branches:
- master
- next
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 14
- 16
- 18
steps:
- uses: actions/checkout@v4
- uses: volta-cli/action@v4.0.1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
release:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
- uses: volta-cli/action@v4.0.1
- run: npm ci
- run: npm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}