Skip to content

Commit

Permalink
Merge branch 'main' into select-no-value-update-refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
atmgrifter00 authored Apr 30, 2024
2 parents 6f22ec7 + 237a6d3 commit 68f22d1
Show file tree
Hide file tree
Showing 7 changed files with 182 additions and 8 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,8 @@ jobs:
exitOnceUploaded: true # Do not wait for test results
exitZeroOnChanges: true # Option to prevent the workflow from failing

# Lint
- run: npm run lint

# Test
- run: npm run test
# Lint and Test
- run: npm run concurrently-lint-test

# Run Lighthouse audit (from any push)
- name: Performance Audit with Lighthouse CI
Expand Down
135 changes: 135 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"invoke-publish": "cross-env-shell beachball publish --yes --access public --message \\\"applying package updates [skip ci]\\\" -n $NPM_SECRET_TOKEN",
"validate": "npm run build && npm run lint && npm run test",
"performance": "npm run performance --workspaces --if-present",
"beachball-sync": "beachball sync"
"beachball-sync": "beachball sync",
"concurrently-lint-test": "concurrently --group \"npm run lint\" \"npm run test\""
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -50,6 +51,7 @@
],
"devDependencies": {
"beachball": "^2.31.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"patch-package": "^8.0.0",
"playwright": "1.42.0"
Expand Down
15 changes: 15 additions & 0 deletions packages/nimble-components/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
{
"name": "@ni/nimble-components",
"entries": [
{
"date": "Tue, 30 Apr 2024 15:26:51 GMT",
"version": "27.0.5",
"tag": "@ni/nimble-components_v27.0.5",
"comments": {
"none": [
{
"author": "rajsite@users.noreply.github.com",
"package": "@ni/nimble-components",
"commit": "cd00c0c1bf9bdfe7f066549d2baf123843c1badd",
"comment": "Try some less verbose test flags"
}
]
}
},
{
"date": "Fri, 26 Apr 2024 21:13:31 GMT",
"version": "27.0.5",
Expand Down
7 changes: 6 additions & 1 deletion packages/nimble-components/karma.conf.verbose.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ module.exports = config => {
originalConfigFunction(config);
const options = {
plugins: [...config.plugins, 'karma-spec-reporter'],
reporters: [...config.reporters, 'spec']
reporters: [...config.reporters, 'spec'],
specReporter: {
suppressPassed: true,
suppressSkipped: false,
showSpecTiming: true
}
};

config.set(options);
Expand Down
15 changes: 15 additions & 0 deletions packages/spright-components/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
{
"name": "@ni/spright-components",
"entries": [
{
"date": "Tue, 30 Apr 2024 15:26:51 GMT",
"version": "0.0.7",
"tag": "@ni/spright-components_v0.0.7",
"comments": {
"none": [
{
"author": "rajsite@users.noreply.github.com",
"package": "@ni/spright-components",
"commit": "cd00c0c1bf9bdfe7f066549d2baf123843c1badd",
"comment": "Try some less verbose test flags"
}
]
}
},
{
"date": "Fri, 26 Apr 2024 21:13:31 GMT",
"version": "0.0.7",
Expand Down
7 changes: 6 additions & 1 deletion packages/spright-components/karma.conf.verbose.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ module.exports = config => {
originalConfigFunction(config);
const options = {
plugins: [...config.plugins, 'karma-spec-reporter'],
reporters: [...config.reporters, 'spec']
reporters: [...config.reporters, 'spec'],
specReporter: {
suppressPassed: true,
suppressSkipped: false,
showSpecTiming: true
}
};

config.set(options);
Expand Down

0 comments on commit 68f22d1

Please sign in to comment.