From 9a7f009394a835b0fc145b89a34582d812dc8750 Mon Sep 17 00:00:00 2001 From: Richard Simpson Date: Fri, 20 Sep 2019 15:56:18 -0500 Subject: [PATCH] chore: don't run in container --- .github/workflows/test.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5f02cb6..3a9b170 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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] }}