Skip to content

Commit

Permalink
chore: removed optional github token
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-ippolito committed Sep 9, 2022
1 parent 926a1dc commit 2e4aeb5
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
name: ci
on: [push, pull_request]
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16]
node-version:
- 14
- 16
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand All @@ -18,14 +22,11 @@ jobs:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
run: npm run test:ci

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

0 comments on commit 2e4aeb5

Please sign in to comment.