-
Notifications
You must be signed in to change notification settings - Fork 129
41 lines (35 loc) · 1009 Bytes
/
htmltest.yaml
File metadata and controls
41 lines (35 loc) · 1009 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: HtmlTest
on:
push:
branches:
- 'main'
- '[0-9]+.[1-9][0-9]*.x'
paths:
- 'docs/**'
pull_request:
branches:
- 'main'
- '[0-9]+.[1-9][0-9]*.x'
paths:
- 'docs/**'
# Declare default permissions as read only.
permissions: read-all
jobs:
htmltest:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
submodules: true
fetch-depth: 0
- name: Cache HTMLTest packages
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: |
tmp/.htmltest
key: htmltest-${{ hashFiles('tmp/.htmltest/refcache.json') }}
- name: Check HTML
run: make htmltest