mirror of
https://github.com/jambonz/sbc-outbound.git
synced 2025-12-19 04:27:45 +00:00
21 lines
319 B
YAML
21 lines
319 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 12
|
|
- run: npm install
|
|
- run: npm run jslint
|
|
- run: pwd
|
|
- run: DEBUG=jambonz:* npm test
|
|
|
|
|