5
0
Fork 0
mirror of https://github.com/hashicorp/vault-action.git synced 2025-11-07 07:06:56 +00:00

Add test workflow

This commit is contained in:
Richard Simpson 2019-09-20 15:13:56 -05:00 committed by GitHub
parent 200002c936
commit cb6639a755
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

25
.github/workflows/test.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
run: |
npm ci
npm test
env:
CI: true