File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : jQuery Mousewheel
2
+
3
+ on :
4
+ pull_request :
5
+ push :
6
+ branches :
7
+ - main
8
+
9
+ env :
10
+ NODE_VERSION : 22.x
11
+
12
+ jobs :
13
+ build-and-test :
14
+ runs-on : ubuntu-latest
15
+ name : Test jQuery Mousewheel Integration
16
+ steps :
17
+ - name : Checkout
18
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
19
+ with :
20
+ submodules : recursive
21
+
22
+ - name : Use Node.js ${{ env.NODE_VERSION }}
23
+ uses : actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
24
+ with :
25
+ node-version : ${{ env.NODE_VERSION }}
26
+
27
+ - name : Cache
28
+ uses : actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
29
+ with :
30
+ path : ~/.npm
31
+ key : ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }}
32
+ restore-keys : |
33
+ ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-
34
+
35
+ - name : Install dependencies
36
+ run : npm install
37
+
38
+ - name : Run jQuery Mousewheel tests
39
+ working-directory : test/jquery-mousewheel
40
+ run : npm it
You can’t perform that action at this time.
0 commit comments