- Use more modern TypeScript conventions - Use JavaScript Kubernetes Client - Add unit tests - Add integration tests - Add TypeScript compile verify workflow - Switch codeowners
21 lines
326 B
YAML
21 lines
326 B
YAML
name: Run Unit Tests
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- "releases/*"
|
|
push:
|
|
branches:
|
|
- master
|
|
- "releases/*"
|
|
|
|
jobs:
|
|
unit-test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Run Unit Tests
|
|
run: |
|
|
npm install
|
|
npm test
|