-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* savegame * Savegame * all tests passing * fix: readme * fix: go mod tidy * fix: doker build * fix: all tests * fix: coderabbit * fix: refactor for better readability * savegame * fix: tests are running (but not working) * 4 test passing * fix: all tests passing * feat: added outlook with umh.getTagFromFullTagName * feat: renamed folder to virtualPath * docs * defiend targetstate for returning multiple msgs * defined target state * mroe future outlook towards returning multiple messages * fix: adjusted test cases * README * fix tests * test still passing * all test passing * feat: multiple message returns * upcomign statement * fixed return type * removed debug * fix: updated README * added ci/cd * fix: removed debiug * removed debug * removed debug * fix: opc ua error (potentially) * added benchmark * added option for json in payload * adjsuted README and test cases * all tests passing * feat: better readability of the code and structure in tag browser * fix readme * final stuff * fix: Docker build * fix: coderabbit * fix: attr
- Loading branch information
1 parent
c9a225f
commit 99c5e7d
Showing
18 changed files
with
3,621 additions
and
15 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,49 @@ | ||
# Copyright 2023 UMH Systems GmbH | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
--- | ||
name: main | ||
|
||
on: | ||
push: | ||
branches: | ||
- '**' | ||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ${{ github.repository }} | ||
GO_VERSION: '1.22.*' | ||
|
||
concurrency: | ||
group: nodered-js-test | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
go-test-nodered-js: | ||
runs-on: | ||
group: arc-runners | ||
permissions: | ||
packages: write | ||
contents: read | ||
timeout-minutes: 30 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup Go | ||
uses: ./.github/actions/setup-go | ||
with: | ||
go_version: ${{ env.GO_VERSION }} | ||
- name: Install Ginkgo | ||
run: go install github.com/onsi/ginkgo/v2/[email protected] | ||
- name: Test | ||
run: TEST_NODERED_JS=1 make test |
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,49 @@ | ||
# Copyright 2023 UMH Systems GmbH | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
--- | ||
name: main | ||
|
||
on: | ||
push: | ||
branches: | ||
- '**' | ||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ${{ github.repository }} | ||
GO_VERSION: '1.22.*' | ||
|
||
concurrency: | ||
group: tag-processor-test | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
go-test-tag-processor: | ||
runs-on: | ||
group: arc-runners | ||
permissions: | ||
packages: write | ||
contents: read | ||
timeout-minutes: 30 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup Go | ||
uses: ./.github/actions/setup-go | ||
with: | ||
go_version: ${{ env.GO_VERSION }} | ||
- name: Install Ginkgo | ||
run: go install github.com/onsi/ginkgo/v2/[email protected] | ||
- name: Test | ||
run: TEST_TAG_PROCESSOR=1 make test |
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
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
Oops, something went wrong.