Skip to content

Commit

Permalink
chore: removed optional github token (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-ippolito authored Sep 9, 2022
1 parent ac0c1a3 commit d4305b0
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,33 @@
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
services:
vault:
image: vault:1.6.2
env:
env:
SKIP_SETCAP: true
VAULT_DEV_ROOT_TOKEN_ID: mytoken
ports:
- 8200:8200
- 8200:8200
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint
- env:
- env:
VAULT_TOKEN: mytoken
run: npm run test:ci

automerge:
needs: build
runs-on: ubuntu-latest
Expand All @@ -33,5 +36,3 @@ jobs:
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
github-token: ${{ secrets.github_token }}

0 comments on commit d4305b0

Please sign in to comment.