File tree Expand file tree Collapse file tree 3 files changed +46
-0
lines changed Expand file tree Collapse file tree 3 files changed +46
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments