mirror of
https://github.com/plausible/analytics.git
synced 2024-11-22 18:52:38 +03:00
99fd101135
* Add basic test harness for browserstack/playwright * Refactor the tests * added the first test for outbound links * tests for outbound-links and file-downloads * added more browser versions to test on * Lint tracker test files * Update harness.js with BrowserStack example * Fix Playwright request mocks * Add test harness to CI * Remove Safari on Windows from browsers list Co-authored-by: Robert <robertjoonas16@gmail.com> Co-authored-by: Vinicius Brasil <vini@hey.com>
47 lines
1.3 KiB
YAML
47 lines
1.3 KiB
YAML
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
repos:
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
rev: "v2.4.1"
|
|
hooks:
|
|
- id: prettier
|
|
files: "assets/js|assets/css"
|
|
args: [--config, assets/.prettierrc.json]
|
|
|
|
- repo: https://github.com/awebdeveloper/pre-commit-stylelint
|
|
rev: '0.0.2'
|
|
hooks:
|
|
- id: stylelint
|
|
additional_dependencies:
|
|
- stylelint@13.2.1
|
|
- stylelint-config-standard@20.0.0
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-eslint
|
|
rev: 'v8.3.0'
|
|
hooks:
|
|
- id: eslint
|
|
files: "assets/js|tracker/test"
|
|
additional_dependencies:
|
|
- eslint@7.30.0
|
|
- eslint-plugin-import@2.22.1
|
|
- eslint-plugin-jsx-a11y@6.4.1
|
|
- eslint-plugin-react@7.21.5
|
|
- eslint-plugin-react-hooks@4.2.0
|
|
|
|
- repo: https://gitlab.com/jvenom/elixir-pre-commit-hooks
|
|
rev: v1.0.0
|
|
hooks:
|
|
- id: mix-format
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.0.1
|
|
hooks:
|
|
- id: check-case-conflict
|
|
- id: check-symlinks
|
|
- id: check-yaml
|
|
- id: destroyed-symlinks
|
|
- id: end-of-file-fixer
|
|
exclude: priv/tracker/js
|
|
- id: mixed-line-ending
|
|
- id: trailing-whitespace
|