Skip to content

Commit

Permalink
Merge pull request #181 from VisLab/node-version
Browse files Browse the repository at this point in the history
Updated the NODE VERSION to latest for CI
  • Loading branch information
VisLab authored Aug 24, 2024
2 parents 7b5d3a1 + 7e13e9c commit 397203a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [18.x, 20.x, 21.x, 22.x]
node-version: [18.x, 'node']

steps:
- name: Check out the code
Expand Down
12 changes: 6 additions & 6 deletions common/issues/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,32 +135,32 @@ export default {
message: stringTemplate`Mixed definition and non-definition tags or tag groups were found in string "${'string'}" in a context where only one type is allowed.`,
},
inactiveOnset: {
hedCode: 'ONSET_OFFSET_INSET_ERROR',
hedCode: 'TEMPORAL_TAG_ERROR',
level: 'error',
message: stringTemplate`${'tag'} found for inactive onset with definition name and value "${'definition'}".`,
},
temporalWithoutInnerGroup: {
hedCode: 'ONSET_OFFSET_INSET_ERROR',
hedCode: 'TEMPORAL_TAG_ERROR',
level: 'error',
message: stringTemplate`${'tag'} found without an included inner top-level tag group. This instance's tag group is "${'tagGroup'}".`,
},
temporalWithMultipleDefinitions: {
hedCode: 'ONSET_OFFSET_INSET_ERROR',
hedCode: 'TEMPORAL_TAG_ERROR',
level: 'error',
message: stringTemplate`${'tag'} found with multiple included definitions. This instance's tag group is "${'tagGroup'}".`,
},
temporalWithoutDefinition: {
hedCode: 'ONSET_OFFSET_INSET_ERROR',
hedCode: 'TEMPORAL_TAG_ERROR',
level: 'error',
message: stringTemplate`${'tag'} found without an included definition. This instance's tag group is "${'tagGroup'}".`,
},
extraTagsInTemporal: {
hedCode: 'ONSET_OFFSET_INSET_ERROR',
hedCode: 'TEMPORAL_TAG_ERROR',
level: 'error',
message: stringTemplate`Extra non-definition top-level tags or tag groups found in onset or offset group with definition "${'definition'}".`,
},
duplicateTemporal: {
hedCode: 'ONSET_OFFSET_INSET_ERROR',
hedCode: 'TEMPORAL_TAG_ERROR',
level: 'error',
message: stringTemplate`HED event string "${'string'}" has onset/offset tags with duplicated definition "${'definition'}".`,
},
Expand Down

0 comments on commit 397203a

Please sign in to comment.