Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update actions and build dependencies #132

Merged
merged 5 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
22 changes: 22 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"language": "en",
"words": [
"webvi",
"Unflatten",
"JSLI",
"gwebproject",
"gviweb",
"lvdist",
"nipkg",
"htdocs",
"USGS",
"gcomp",
"lvproj",
"rgba",
"flot",
"subfolders",
"mystyle",
"myscript",
"unflattening"
]
}
9 changes: 5 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '22'
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
- run: npm ci
- run: npm test
10 changes: 1 addition & 9 deletions .linkcheck.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
{
"timeout": "5m",
"ignorePatterns": [
{
"pattern": "https://www.systemlinkcloud.com/webapphosting"
},
{
"pattern": "https://www.systemlinkcloud.com/api-download"
},
{
"pattern": "https://www.systemlinkcloud.com/security"
}
]
}
102 changes: 0 additions & 102 deletions .spelling

This file was deleted.

2 changes: 1 addition & 1 deletion Guides/CSS/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# CSS Frequently Asked Questions

- [What is CSS?](#what-is-css)
- [Will NI maintain a stable set of CSS properties from release to release?](#will-ni-maintain-a-stable-set-of-CSS-properties-from-release-to-release)
- [Will NI maintain a stable set of CSS properties from release to release?](#will-ni-maintain-a-stable-set-of-css-properties-from-release-to-release)
- [When should I avoid customizing WebVIs via CSS?](#when-should-i-avoid-customizing-webvis-via-css)
- [How should I include CSS in my project?](#how-should-i-include-css-in-my-project)
- [Why is my WebVI ignoring my CSS?](#why-is-my-webvi-ignoring-my-css)
Expand Down
2 changes: 1 addition & 1 deletion IncorporateUserResources/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ You can also use resource files to augment the WebVI's capabilities. For example

## Hosting

You can manually the move the build output found at `\IncorporateUserResourcest\Builds` to any web server. This project also includes a Distribution (`WebApp.lvdist`) that can be used to build a package (.nipkg). Packages utilize NI Package Manager to automated the process of installing, upgrading, or removing the web app. A package is also a requirement for hosting a Web application on SystemLink Cloud.
You can manually the move the build output found at `\IncorporateUserResources\Builds` to any web server. This project also includes a Distribution (`WebApp.lvdist`) that can be used to build a package (.nipkg). Packages utilize NI Package Manager to automated the process of installing, upgrading, or removing the web app. A package is also a requirement for hosting a Web application on SystemLink Cloud.

### SystemLink Cloud Web App Hosting

Expand Down
Loading