This repository has been archived by the owner on Sep 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: /api/build endpoint, github action (#15)
* 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
1 parent
cd85f48
commit 7b411d5
Showing
10 changed files
with
3,846 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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": { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
Oops, something went wrong.