mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-08 15:46:56 +00:00
chore: don't run in container
This commit is contained in:
parent
d78f75f886
commit
9a7f009394
1 changed files with 12 additions and 11 deletions
23
.github/workflows/test.yml
vendored
23
.github/workflows/test.yml
vendored
|
|
@ -24,9 +24,6 @@ jobs:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
container:
|
|
||||||
image: node:10.16-jessie
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
vault:
|
vault:
|
||||||
image: vault:1.2.3
|
image: vault:1.2.3
|
||||||
|
|
@ -37,12 +34,16 @@ jobs:
|
||||||
options: --cap-add=IPC_LOCK
|
options: --cap-add=IPC_LOCK
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: npm install
|
- name: Use Node.js 10.x
|
||||||
run: npm ci
|
uses: actions/setup-node@v1
|
||||||
- name: test connection
|
with:
|
||||||
run: node quicktest.js
|
node-version: 10.x
|
||||||
env:
|
- name: npm install
|
||||||
VAULT_HOST: localhost
|
run: npm ci
|
||||||
VAULT_PORT: ${{ job.services.vault.ports[8200] }}
|
- name: test connection
|
||||||
|
run: node quicktest.js
|
||||||
|
env:
|
||||||
|
VAULT_HOST: localhost
|
||||||
|
VAULT_PORT: ${{ job.services.vault.ports[8200] }}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue