Skip to content

Commit

Permalink
Merge pull request #292 from nearform/chore/remove-optional-github-token
Browse files Browse the repository at this point in the history
remove optional github token
  • Loading branch information
simoneb authored Sep 9, 2022
2 parents 926a1dc + 2e4aeb5 commit e456f13
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 e456f13

Please sign in to comment.