Skip to content

Bump the dev-dependencies group with 2 updates #300

Bump the dev-dependencies group with 2 updates

Bump the dev-dependencies group with 2 updates #300

Workflow file for this run

name: build
on: [pull_request]
jobs:
npm-run-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Read .nvmrc
id: nvmrc
shell: bash
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
- uses: actions/setup-node@v4
with:
node-version: ${{ steps.nvmrc.outputs.NODE_VERSION }}
- run: npm ci
- run: npm run build
env:
CI: true
dependabot:
permissions:
contents: write
pull-requests: read
runs-on: ubuntu-latest
needs: [npm-run-build]
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- run: 'gh pr merge --auto --rebase "$PULL_REQUEST"'
env:
PULL_REQUEST: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}