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

Commit

Permalink
feat!: /api/build endpoint, github action (#15)
Browse files Browse the repository at this point in the history
* postbuildraw endpoint, github action

* formatting, changing back accidentally modified npm test script

* now deletes entire collection after test run

* formatting

* fixed PR changes

* added newline
  • Loading branch information
StuartRucker authored Jun 18, 2020
1 parent cd85f48 commit 7b411d5
Show file tree
Hide file tree
Showing 10 changed files with 3,846 additions and 10 deletions.
15 changes: 15 additions & 0 deletions packages/action/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"env": {
"es2020": true,
"node": true
},
"extends": [
"google"
],
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"rules": {
}
}
20 changes: 20 additions & 0 deletions packages/action/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: 'Flaky.dev'
description: 'Post Testing Logs to Flaky Server'
inputs:
github:
description: 'The Github Context JSON object'
required: true
default: 'None'
matrix:
description: 'Matrix information on run'
required: false
default: 'None'
os:
description: 'Operating System it is being run on'
required: true
logtype:
description: 'Type of Log.. e.g. (TAP, XML, ... TODO)'

runs:
using: 'node12'
main: 'dist/index.js'
Loading

0 comments on commit 7b411d5

Please sign in to comment.