Skip to content

Commit 272b8f4

Browse files
committed
chore: initial
1 parent bc26725 commit 272b8f4

File tree

11 files changed

+13379
-0
lines changed

11 files changed

+13379
-0
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
types: [opened, synchronize]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
env:
13+
ACOT_GITHUB_APP_TOKEN: ${{ secrets.ACOT_GITHUB_APP_TOKEN }}
14+
steps:
15+
- uses: actions/checkout@v2
16+
- uses: actions/setup-node@v2
17+
with:
18+
node-version: '14'
19+
- run: npm i
20+
- run: npm t

.gitignore

Lines changed: 190 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
.acot
2+
3+
# Created by https://www.toptal.com/developers/gitignore/api/osx,windows,node
4+
# Edit at https://www.toptal.com/developers/gitignore?templates=osx,windows,node
5+
6+
### Node ###
7+
# Logs
8+
logs
9+
*.log
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
lerna-debug.log*
14+
.pnpm-debug.log*
15+
16+
# Diagnostic reports (https://nodejs.org/api/report.html)
17+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
18+
19+
# Runtime data
20+
pids
21+
*.pid
22+
*.seed
23+
*.pid.lock
24+
25+
# Directory for instrumented libs generated by jscoverage/JSCover
26+
lib-cov
27+
28+
# Coverage directory used by tools like istanbul
29+
coverage
30+
*.lcov
31+
32+
# nyc test coverage
33+
.nyc_output
34+
35+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
36+
.grunt
37+
38+
# Bower dependency directory (https://bower.io/)
39+
bower_components
40+
41+
# node-waf configuration
42+
.lock-wscript
43+
44+
# Compiled binary addons (https://nodejs.org/api/addons.html)
45+
build/Release
46+
47+
# Dependency directories
48+
node_modules/
49+
jspm_packages/
50+
51+
# Snowpack dependency directory (https://snowpack.dev/)
52+
web_modules/
53+
54+
# TypeScript cache
55+
*.tsbuildinfo
56+
57+
# Optional npm cache directory
58+
.npm
59+
60+
# Optional eslint cache
61+
.eslintcache
62+
63+
# Microbundle cache
64+
.rpt2_cache/
65+
.rts2_cache_cjs/
66+
.rts2_cache_es/
67+
.rts2_cache_umd/
68+
69+
# Optional REPL history
70+
.node_repl_history
71+
72+
# Output of 'npm pack'
73+
*.tgz
74+
75+
# Yarn Integrity file
76+
.yarn-integrity
77+
78+
# dotenv environment variables file
79+
.env
80+
.env.test
81+
.env.production
82+
83+
# parcel-bundler cache (https://parceljs.org/)
84+
.cache
85+
.parcel-cache
86+
87+
# Next.js build output
88+
.next
89+
out
90+
91+
# Nuxt.js build / generate output
92+
.nuxt
93+
dist
94+
95+
# Gatsby files
96+
.cache/
97+
# Comment in the public line in if your project uses Gatsby and not Next.js
98+
# https://nextjs.org/blog/next-9-1#public-directory-support
99+
# public
100+
101+
# vuepress build output
102+
.vuepress/dist
103+
104+
# Serverless directories
105+
.serverless/
106+
107+
# FuseBox cache
108+
.fusebox/
109+
110+
# DynamoDB Local files
111+
.dynamodb/
112+
113+
# TernJS port file
114+
.tern-port
115+
116+
# Stores VSCode versions used for testing VSCode extensions
117+
.vscode-test
118+
119+
# yarn v2
120+
.yarn/cache
121+
.yarn/unplugged
122+
.yarn/build-state.yml
123+
.yarn/install-state.gz
124+
.pnp.*
125+
126+
### Node Patch ###
127+
# Serverless Webpack directories
128+
.webpack/
129+
130+
# Optional stylelint cache
131+
.stylelintcache
132+
133+
# SvelteKit build / generate output
134+
.svelte-kit
135+
136+
### OSX ###
137+
# General
138+
.DS_Store
139+
.AppleDouble
140+
.LSOverride
141+
142+
# Icon must end with two \r
143+
Icon
144+
145+
# Thumbnails
146+
._*
147+
148+
# Files that might appear in the root of a volume
149+
.DocumentRevisions-V100
150+
.fseventsd
151+
.Spotlight-V100
152+
.TemporaryItems
153+
.Trashes
154+
.VolumeIcon.icns
155+
.com.apple.timemachine.donotpresent
156+
157+
# Directories potentially created on remote AFP share
158+
.AppleDB
159+
.AppleDesktop
160+
Network Trash Folder
161+
Temporary Items
162+
.apdisk
163+
164+
### Windows ###
165+
# Windows thumbnail cache files
166+
Thumbs.db
167+
Thumbs.db:encryptable
168+
ehthumbs.db
169+
ehthumbs_vista.db
170+
171+
# Dump file
172+
*.stackdump
173+
174+
# Folder config file
175+
[Dd]esktop.ini
176+
177+
# Recycle Bin used on file shares
178+
$RECYCLE.BIN/
179+
180+
# Windows Installer files
181+
*.cab
182+
*.msi
183+
*.msix
184+
*.msm
185+
*.msp
186+
187+
# Windows shortcuts
188+
*.lnk
189+
190+
# End of https://www.toptal.com/developers/gitignore/api/osx,windows,node

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# example-github-reporter
2+
3+
An example repository for [@acot/acot-reporter-github](https://github.com/acot-a11y/acot/tree/canary/packages/acot-reporter-github).

acot.config.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module.exports = {
2+
extends: ['@acot'],
3+
connection: {
4+
command: 'npm run serve',
5+
},
6+
reporters: ['@acot/pretty', '@acot/github'],
7+
origin: 'http://localhost:3000',
8+
paths: ['/page1', '/page2', '/page3', '/page4', '/page5'],
9+
};

0 commit comments

Comments
 (0)