Update nodejs.yml

This commit is contained in:
Trevor Blades
2019-08-21 20:13:20 -07:00
committed by GitHub
parent 7e82a3e17a
commit 3e2f33c6a1

31
.github/workflows/nodejs.yml vendored Normal file
View File

@@ -0,0 +1,31 @@
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [10]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: npm install and test
run: |
npm install
npm test
-
- name: Register schema
run: |
npx pm2 start index.js --node-args"-r esm"
npx apollo service:push
env:
port: 5000
engine_api_key: ${{ secrets.ENGINE_API_KEY }}