Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
Add dynatrace-canary-exporter testing github action
Browse files Browse the repository at this point in the history
  • Loading branch information
myieye committed Jul 7, 2020
1 parent e2d3b80 commit ba237ac
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test-dynatrace-canary-exporter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test Dynatrace Canary Exporter

on:
pull_request:
branches: [ master ]
paths:
- 'third-party-synthetic/aws-cloudwatch/**'

jobs:
test:
name: Test on node ${{ matrix.node-version }}
runs-on: ubuntu-latest

defaults:
run:
working-directory: ./third-party-synthetic/aws-cloudwatch/tests

strategy:
matrix:
node-version: [10.x, 12.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test

0 comments on commit ba237ac

Please sign in to comment.