mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-09 16:16:55 +00:00
add revoke token github action tests
This commit is contained in:
parent
4f749bbbd2
commit
e683ccdad0
1 changed files with 33 additions and 0 deletions
33
.github/workflows/local-test.yaml
vendored
33
.github/workflows/local-test.yaml
vendored
|
|
@ -59,3 +59,36 @@ jobs:
|
||||||
echo
|
echo
|
||||||
cat secrets.json
|
cat secrets.json
|
||||||
jq -c . < secrets.json
|
jq -c . < secrets.json
|
||||||
|
revoke-token:
|
||||||
|
name: revoke-token
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
||||||
|
|
||||||
|
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
|
||||||
|
with:
|
||||||
|
node-version: '16.14.0'
|
||||||
|
|
||||||
|
- name: NPM Install
|
||||||
|
run: npm ci
|
||||||
|
|
||||||
|
- name: NPM Build
|
||||||
|
run: npm run build
|
||||||
|
|
||||||
|
- name: Setup Vault
|
||||||
|
run: node ./integrationTests/e2e/setup.js
|
||||||
|
env:
|
||||||
|
VAULT_HOST: localhost
|
||||||
|
VAULT_PORT: 8200
|
||||||
|
|
||||||
|
- name: Import Secrets
|
||||||
|
id: import-secrets
|
||||||
|
# use the local changes
|
||||||
|
uses: ./
|
||||||
|
# run against a specific version of vault-action
|
||||||
|
# uses: hashicorp/vault-action@v2.1.2
|
||||||
|
with:
|
||||||
|
url: http://localhost:8200
|
||||||
|
method: token
|
||||||
|
token: testtoken
|
||||||
|
revokeToken: true
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue