File tree 4 files changed +31
-14
lines changed
4 files changed +31
-14
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ - package-ecosystem : github-actions
4
+ directory : " /"
5
+ schedule :
6
+ interval : monthly
7
+
8
+ # Group all dependabot version update PRs into one
9
+ groups :
10
+ github-actions :
11
+ applies-to : version-updates
12
+ patterns :
13
+ - " *"
Original file line number Diff line number Diff line change 3
3
name : Node.js CI
4
4
5
5
on :
6
- - push
7
- - pull_request
6
+ pull_request :
7
+ push :
8
+ branches-ignore : " dependabot/**"
8
9
9
10
jobs :
10
11
build :
@@ -16,13 +17,14 @@ jobs:
16
17
node-version : [18.x, 20.x]
17
18
18
19
steps :
19
- - name : Install xmllint
20
- run : sudo apt-get install -y libxml2-utils
21
- - uses : actions/checkout@v3
22
- - name : Use Node.js ${{ matrix.node-version }}
23
- uses : actions/setup-node@v3
24
- with :
25
- node-version : ${{ matrix.node-version }}
26
- cache : ' npm'
27
- - run : npm ci
28
- - run : npm test
20
+ - name : Checkout
21
+ uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
22
+ - name : Install xmllint
23
+ run : sudo apt-get install -y libxml2-utils
24
+ - name : Use Node.js ${{ matrix.node-version }}
25
+ uses : actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
26
+ with :
27
+ node-version : ${{ matrix.node-version }}
28
+ cache : ' npm'
29
+ - run : npm ci
30
+ - run : npm test
Original file line number Diff line number Diff line change 21
21
# Site address to crawl
22
22
MY_SITE : https://api.jquery.com
23
23
steps :
24
- - uses : actions/checkout@v4
24
+ - name : Checkout
25
+ uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
25
26
26
27
- name : Run hydra-link-checker
27
28
run : |
Original file line number Diff line number Diff line change 16
16
if : ${{ github.repository_owner == 'jquery' }} # skip on forks
17
17
runs-on : ubuntu-latest
18
18
steps :
19
- - uses : actions/checkout@v3
19
+ - name : Checkout
20
+ uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
20
21
- name : Docsearch Scraper
21
22
shell : bash
22
23
run : |
You can’t perform that action at this time.
0 commit comments