Skip to content

Bump rollup from 3.20.6 to 3.26.3 #1103

Bump rollup from 3.20.6 to 3.26.3

Bump rollup from 3.20.6 to 3.26.3 #1103

Workflow file for this run

name: Build and Test
on: [push, pull_request]
permissions:
pull-requests: write
contents: write
jobs:
test:
strategy:
matrix:
node: ['16', '18']
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run prettier
- run: npm run test
- run: npm run coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
dependabot-auto-merge:
runs-on: ubuntu-latest
needs: [test]
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}}
steps:
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}