mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-07 07:06: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
|
||||
|
||||
container:
|
||||
image: node:10.16-jessie
|
||||
|
||||
services:
|
||||
vault:
|
||||
image: vault:1.2.3
|
||||
|
|
@ -37,12 +34,16 @@ jobs:
|
|||
options: --cap-add=IPC_LOCK
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: npm install
|
||||
run: npm ci
|
||||
- name: test connection
|
||||
run: node quicktest.js
|
||||
env:
|
||||
VAULT_HOST: localhost
|
||||
VAULT_PORT: ${{ job.services.vault.ports[8200] }}
|
||||
- uses: actions/checkout@v1
|
||||
- name: Use Node.js 10.x
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 10.x
|
||||
- name: npm install
|
||||
run: npm ci
|
||||
- name: test connection
|
||||
run: node quicktest.js
|
||||
env:
|
||||
VAULT_HOST: localhost
|
||||
VAULT_PORT: ${{ job.services.vault.ports[8200] }}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue