Skip to content

Commit

Permalink
Merge pull request #1 from component-driven/master
Browse files Browse the repository at this point in the history
update from main repo
  • Loading branch information
sshaar08 authored Feb 16, 2021
2 parents 6f7887c + db50459 commit 26644cf
Show file tree
Hide file tree
Showing 23 changed files with 4,738 additions and 112 deletions.
51 changes: 49 additions & 2 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"projectName": "cypress-axe",
"projectOwner": "avanslaars",
"projectOwner": "component-driven",
"repoType": "github",
"repoHost": "https://github.com",
"files": [
Expand All @@ -27,7 +27,54 @@
"contributions": [
"code"
]
},
{
"login": "NicholasBoll",
"name": "Nicholas Boll",
"avatar_url": "https://avatars2.githubusercontent.com/u/338257?v=4",
"profile": "https://github.com/NicholasBoll",
"contributions": [
"code"
]
},
{
"login": "michaeljacobdavis",
"name": "Mike Davis",
"avatar_url": "https://avatars2.githubusercontent.com/u/916905?v=4",
"profile": "https://github.com/michaeljacobdavis",
"contributions": [
"code"
]
},
{
"login": "chit786",
"name": "chit786",
"avatar_url": "https://avatars2.githubusercontent.com/u/18376182?v=4",
"profile": "https://github.com/chit786",
"contributions": [
"code",
"doc"
]
},
{
"login": "acourdavault",
"name": "Adrien courdavault",
"avatar_url": "https://avatars0.githubusercontent.com/u/27222128?v=4",
"profile": "https://github.com/acourdavault",
"contributions": [
"code"
]
},
{
"login": "brettz9",
"name": "Brett Zamir",
"avatar_url": "https://avatars3.githubusercontent.com/u/20234?v=4",
"profile": "http://brett-zamir.me",
"contributions": [
"code"
]
}
],
"contributorsPerLine": 7
"contributorsPerLine": 7,
"skipCi": true
}
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# editorconfig.org
root = true

[*]
indent_style = tab
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.{json,yml,md,babelrc,remarkrc}]
indent_style = space
indent_size = 2
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
dist/
8 changes: 8 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"extends": "tamia/typescript",
"globals": {
"cy": false,
"Cypress": false,
"assert": false
}
}
29 changes: 29 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Node.js CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.x, 12.x, 14.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Semantic Release
'on':
push:
branches:
- master
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
- env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
NPM_TOKEN: '${{ secrets.NPM_TOKEN }}'
run: npx semantic-release
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
node_modules
.cache
dist
.vscode
.eslintcache
17 changes: 17 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"singleQuote": true,
"useTabs": true,
"overrides": [
{
"files": "*.md",
"options": {
"printWidth": 70,
"useTabs": false,
"semi": false,
"trailingComma": "none",
"arrowParens": "avoid",
"proseWrap": "never"
}
}
]
}
9 changes: 9 additions & 0 deletions License.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# The MIT License

Copyright 2020 Andy Van Slaars, Artem Sapegin, contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Loading

0 comments on commit 26644cf

Please sign in to comment.