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
7
.github/workflows/test.yml
vendored
7
.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
|
||||
|
|
@ -38,6 +35,10 @@ jobs:
|
|||
|
||||
steps:
|
||||
- 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
|
||||
|
|
|
|||
Loading…
Reference in a new issue