Skip to content

Commit

Permalink
chore(deps): bump fastify/github-action-merge-dependabot from 2.7.1 t…
Browse files Browse the repository at this point in the history
…o 3.0.2 (#154)

* chore(deps): bump fastify/github-action-merge-dependabot

Bumps [fastify/github-action-merge-dependabot](https://github.com/fastify/github-action-merge-dependabot) from 2.7.1 to 3.0.2.
- [Release notes](https://github.com/fastify/github-action-merge-dependabot/releases)
- [Commits](fastify/github-action-merge-dependabot@v2.7.1...v3.0.2)

---
updated-dependencies:
- dependency-name: fastify/github-action-merge-dependabot
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore: update merge action

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Simone Busoli <simone.busoli@nearform.com>
  • Loading branch information
dependabot[bot] and simoneb committed Dec 14, 2021
1 parent 1f6b749 commit 3665cf0
Showing 1 changed file with 11 additions and 19 deletions.
30 changes: 11 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,35 +1,27 @@
---
name: CI
name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x]
node-version: [12, 14, 16]
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
- name: Use Node.js
uses: actions/setup-node@v2.5.0
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Restore cached dependencies
uses: actions/cache@v2.1.7
with:
path: node_modules
key: node-modules-${{ hashFiles('package.json') }}
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Run Tests
run: npm run test:ci
- run: npm install
- run: npm run lint
- run: npm run test:ci

automerge:
needs: build
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v2.7.1
- uses: fastify/github-action-merge-dependabot@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3665cf0

Please sign in to comment.