mirror of
https://github.com/jambonz/jambonz-feature-server.git
synced 2025-12-20 08:40:38 +00:00
major merge of features from the hosted branch that was created temporarily during the initial launch of jambonz.org
23 lines
540 B
YAML
23 lines
540 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 14
|
|
- run: npm ci
|
|
- run: npm run jslint
|
|
- run: docker pull drachtio/sipp
|
|
- run: npm test
|
|
env:
|
|
GCP_JSON_KEY: ${{ secrets.GCP_JSON_KEY }}
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
AWS_REGION: ${{ secrets.AWS_REGION }}
|