Skip to content
Draft
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
5 changes: 3 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,29 @@
jobs:
build:

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm]
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: grunt build
- run: npm run cover

- name: Publish to coveralls.io
if: github.repository == 'IgniteUI/ignite-ui' && matrix.node-version == '20.x'
if: github.repository == 'IgniteUI/ignite-ui' && matrix.node-version == '20.x' && matrix.os == 'ubuntu-latest'
uses: coverallsapp/github-action@v1.2.1
with:
path-to-lcov: ./coverage/lcov.info
github-token: ${{ github.token }}

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {contents: read}

10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,16 @@ Package contains similar files and structure to what you'd find in the [full ver
```
The full built content for both packages can be browsed at the [Ignite UI for jQuery Bower Shim repository](https://github.com/IgniteUI/ignite-ui-bower).

## Platform Support

Ignite UI for jQuery is tested and supported on the following platforms:

* **Operating Systems**: Windows, macOS, Linux (x86_64 and ARM64/aarch64)
* **Node.js**: Node.js 20.x and later
* **Browsers**: Chrome, Firefox, Safari, Edge

The ARM64 (aarch64) support has been validated and is continuously tested via our CI/CD pipeline. This ensures that developers can build and run Ignite UI for jQuery on ARM-based systems including Apple Silicon Macs, AWS Graviton instances, and other ARM64 Linux environments.

## Running demos locally

Besides browsing our [online samples](http://www.igniteui.com/), you can also run the demos included with this repo in a local clone.
Expand Down
Loading