Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
880f371
translate
cpfarherFinitestate Jun 11, 2024
9c87b12
translate sdk
cpfarherFinitestate Jun 11, 2024
fa639d0
fixes
cpfarherFinitestate Jun 12, 2024
8788229
add github dependencies
cpfarherFinitestate Jun 12, 2024
17f4867
format files
cpfarherFinitestate Jun 12, 2024
631954c
delete python code
cpfarherFinitestate Jun 12, 2024
e6bcdd4
add utils methods to interact with github
cpfarherFinitestate Jun 12, 2024
3b119c3
cleanup and refactor
cpfarherFinitestate Jun 12, 2024
94fa957
format
cpfarherFinitestate Jun 12, 2024
0f23172
fixes
cpfarherFinitestate Jun 13, 2024
cfa83eb
fixes
cpfarherFinitestate Jun 13, 2024
b4da44e
fix tests
cpfarherFinitestate Jun 13, 2024
b746deb
lint fix
cpfarherFinitestate Jun 13, 2024
9f2bce8
fixes
cpfarherFinitestate Jun 13, 2024
2b797eb
fix
cpfarherFinitestate Jun 13, 2024
b520b83
dist needed for github actions
cpfarherFinitestate Jun 13, 2024
dfc193c
add dist
cpfarherFinitestate Jun 13, 2024
55ef8ee
pass with not test
cpfarherFinitestate Jun 13, 2024
95461b2
downcase vars
cpfarherFinitestate Jun 13, 2024
980992c
add flag not tests
cpfarherFinitestate Jun 13, 2024
160d9b6
bundle
cpfarherFinitestate Jun 13, 2024
b3d88d2
try to fix getting input vars
cpfarherFinitestate Jun 13, 2024
3040566
fix
cpfarherFinitestate Jun 13, 2024
8093afc
bundle
cpfarherFinitestate Jun 13, 2024
ab42ffa
fix path
cpfarherFinitestate Jun 13, 2024
ba9887a
add binary demo file
cpfarherFinitestate Jun 13, 2024
9651248
fix path
cpfarherFinitestate Jun 13, 2024
b9ef4ac
delete comments
cpfarherFinitestate Jun 13, 2024
bfd3212
fix comments and url
cpfarherFinitestate Jun 13, 2024
900a5b3
fix url generation
cpfarherFinitestate Jun 13, 2024
8c95c37
bundle
cpfarherFinitestate Jun 13, 2024
dd56430
do not comment
cpfarherFinitestate Jun 14, 2024
e2d4ead
log booleans inputs
cpfarherFinitestate Jun 14, 2024
16198d7
debug inputs
cpfarherFinitestate Jun 14, 2024
198d12a
bundle
cpfarherFinitestate Jun 14, 2024
775dfba
clean up
cpfarherFinitestate Jun 14, 2024
f0bcaaf
bundle
cpfarherFinitestate Jun 14, 2024
e3083a3
fix input
cpfarherFinitestate Jun 14, 2024
c058381
refactor
cpfarherFinitestate Jun 14, 2024
5f58ca6
bundle and fix path
cpfarherFinitestate Jun 14, 2024
6753b9b
log params
cpfarherFinitestate Jun 14, 2024
8833c53
fix
cpfarherFinitestate Jun 14, 2024
5c06eab
fixes
cpfarherFinitestate Jun 14, 2024
09e4e2f
remote snatiize form secrets
cpfarherFinitestate Jun 14, 2024
8ba7725
fixes
cpfarherFinitestate Jun 14, 2024
57c6bd3
fix sanitizer
cpfarherFinitestate Jun 14, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/linters/.eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ rules:
'no-unused-vars': 'off',
'prettier/prettier': 'error',
'semi': 'off',
'no-shadow': 'off',
'@typescript-eslint/array-type': 'error',
'@typescript-eslint/await-thenable': 'error',
'@typescript-eslint/ban-ts-comment': 'error',
Expand Down Expand Up @@ -79,5 +80,6 @@ rules:
'@typescript-eslint/semi': ['error', 'never'],
'@typescript-eslint/space-before-function-paren': 'off',
'@typescript-eslint/type-annotation-spacing': 'error',
'@typescript-eslint/unbound-method': 'error'
'@typescript-eslint/unbound-method': 'error',
'@typescript-eslint/no-shadow': 'warn'
}
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

- name: Test
id: npm-ci-test
run: npm run ci-test
run: npm run ci-test -- --passWithNoTests

binary_scan:
name: GitHub Actions Test
Expand All @@ -71,7 +71,7 @@ jobs:
finite-state-organization-context: ${{ secrets.ORGANIZATION_CONTEXT }}
asset-id: ${{env.ASSET_ID}}
version: ${{ github.sha }}
file-path: ./somefile.bin # Put the same path from the "Upload binary generated file" step here
file-path: ./src/lib/utils/example_binary/esp-at.bin # Put the same path from the "Upload binary generated file" step here
github-token: ${{ secrets.GITHUB_TOKEN }} # optional if you would like to generate the comment automatically in the PR
automatic-comment: true # optional if you would like to generate the comment automatically in the PR

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,4 @@ __tests__/runner/*
.idea
.vscode
*.code-workspace
src/lib/utils/example_binary/TL-WR841HPv1.bin
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright GitHub
Copyright Finite State

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
17 changes: 0 additions & 17 deletions __tests__/index.test.ts

This file was deleted.

53 changes: 0 additions & 53 deletions __tests__/main.test.ts

This file was deleted.

74 changes: 0 additions & 74 deletions __tests__/python.test.ts

This file was deleted.

Loading