Skip to content

Commit f3609d5

Browse files
authored
Test Utils is now a WHATWG Standard
1 parent 8dcbcc2 commit f3609d5

9 files changed

+473
-13
lines changed

.editorconfig

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
charset = utf-8
7+
indent_size = 2
8+
indent_style = space
9+
trim_trailing_whitespace = true
10+
max_line_length = 100
11+
12+
[Makefile]
13+
indent_style = tab
14+
15+
[*.bs]
16+
indent_size = 1
17+
18+
[*.py]
19+
indent_size = 4

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* text=auto
2+
*.bs diff=html linguist-language=HTML

.github/workflows/build.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
push:
7+
branches:
8+
- main
9+
jobs:
10+
build:
11+
name: Build
12+
runs-on: ubuntu-20.04
13+
steps:
14+
- uses: actions/checkout@v2
15+
with:
16+
fetch-depth: 2
17+
# Note: `python` will also be this version, which various scripts depend on.
18+
- uses: actions/setup-python@v2
19+
with:
20+
python-version: 3.8
21+
# Note: `make deploy` will do a deploy dry run on PRs.
22+
- run: make deploy
23+
env:
24+
SERVER: ${{ secrets.MARQUEE_SERVER }}
25+
SERVER_PUBLIC_KEY: ${{ secrets.MARQUEE_PUBLIC_KEY }}
26+
SERVER_DEPLOY_KEY: ${{ secrets.MARQUEE_DEPLOY_KEY }}

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/testutils.spec.whatwg.org/
2+
/deploy.sh
3+
/index.html
4+
/review.sh

.pr-preview.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"src_file": "index.bs",
3+
"type": "bikeshed",
4+
"params": {
5+
"force": 1,
6+
"md-status": "LS-PR",
7+
"md-Text-Macro": "PR-NUMBER {{ pull_request.number }}"
8+
}
9+
}

0 commit comments

Comments
 (0)