Skip to content

Commit 2337329

Browse files
authored
test(submodules): upgrade submodules; add jquery-color
- Update all test submodules to their latest main branches, which includes dependency updates - Add jquery-color to test Closes gh-23
1 parent 27d84be commit 2337329

File tree

7 files changed

+50
-4
lines changed

7 files changed

+50
-4
lines changed

.github/workflows/jquery-color.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: jQuery Color
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
env:
10+
NODE_VERSION: 24.x
11+
12+
jobs:
13+
build-and-test:
14+
runs-on: ubuntu-latest
15+
name: Test jQuery Color Integration
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
19+
with:
20+
submodules: recursive
21+
22+
- name: Use Node.js ${{ env.NODE_VERSION }}
23+
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
24+
with:
25+
node-version: ${{ env.NODE_VERSION }}
26+
cache: npm
27+
cache-dependency-path: '**/package-lock.json'
28+
29+
- name: Install dependencies
30+
run: npm ci
31+
32+
- name: Install jQuery Color dependencies
33+
working-directory: test/jquery-color
34+
run: npm ci
35+
36+
- name: Install local JTR
37+
working-directory: test/jquery-color
38+
run: npm install -D ../../
39+
40+
- name: Run jQuery Color tests
41+
working-directory: test/jquery-color
42+
run: npm test

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@
1010
[submodule "test/jquery-mousewheel"]
1111
path = test/jquery-mousewheel
1212
url = [email protected]:jquery/jquery-mousewheel.git
13+
[submodule "test/jquery-color"]
14+
path = test/jquery-color
15+
url = [email protected]:jquery/jquery-color.git

test/jquery-color

Submodule jquery-color added at 84946ae

test/jquery-ui

0 commit comments

Comments
 (0)