-
Notifications
You must be signed in to change notification settings - Fork 266
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
585 changed files
with
18,177 additions
and
6,547 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
*.md | ||
11ty/ | ||
acknowledgements.html | ||
acknowledgements/ | ||
conformance-challenges/ | ||
guidelines/ | ||
lib/ | ||
requirements/ | ||
script/ | ||
wcag20/ | ||
# working-examples is directly copied; it should not be processed as templates | ||
working-examples/ | ||
xslt/ | ||
|
||
# These files under understanding don't end up in output in the old build | ||
understanding/*/accessibility-support-documenting.html | ||
understanding/*/identify-changes.html | ||
understanding/*/interruptions-minimum.html | ||
understanding/*/seizures.html | ||
|
||
# Ignore templates used for creating new documents | ||
**/*-template.html | ||
|
||
# HTML files under img will be passthrough-copied | ||
**/img/* |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Push to gh-pages branch | ||
|
||
# Reference documentation: https://docs.github.com/en/actions/reference | ||
|
||
# See https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#onpushpull_requestbranchestags | ||
on: | ||
push: | ||
branches: [main] | ||
|
||
jobs: | ||
main: | ||
name: deploy (11ty) | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v4 | ||
- name: Checkout gh-pages | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: gh-pages | ||
path: _site | ||
token: ${{ secrets.W3CGRUNTBOT_TOKEN }} | ||
- name: Install Node.js and dependencies | ||
uses: actions/setup-node@v4 | ||
with: | ||
cache: npm | ||
node-version-file: '.nvmrc' | ||
- name: Build | ||
env: | ||
WCAG_MODE: editors | ||
run: | | ||
npm i | ||
npm run build | ||
cp guidelines/guidelines.css guidelines/relative-luminance.html _site/guidelines/22 | ||
curl https://labs.w3.org/spec-generator/?type=respec"&"url=https://raw.githack.com/$GITHUB_REPOSITORY/main/guidelines/index.html -o _site/guidelines/22/index.html -f --retry 3 | ||
curl https://labs.w3.org/spec-generator/?type=respec"&"url=https://raw.githack.com/$GITHUB_REPOSITORY/main/requirements/22/index.html -o _site/requirements/22/index.html -f --retry 3 | ||
curl https://labs.w3.org/spec-generator/?type=respec"&"url=https://raw.githack.com/$GITHUB_REPOSITORY/main/conformance-challenges/index.html -o _site/conformance-challenges/index.html -f --retry 3 | ||
- name: Push | ||
working-directory: _site | ||
run: | | ||
git config user.email 87540780+w3cgruntbot@users.noreply.github.com | ||
git config user.name w3cgruntbot | ||
git add -A . | ||
git commit -m ":robot: Deploy to GitHub Pages: $GITHUB_SHA from branch $GITHUB_REF" | ||
git push origin gh-pages |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
20 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*.* | ||
!*.ts | ||
!*.11tydata.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"printWidth": 100, | ||
"trailingComma": "es5" | ||
} |
Oops, something went wrong.