Skip to content

Commit

Permalink
Merge branch 'master' into dev-datetime-period-2
Browse files Browse the repository at this point in the history
  • Loading branch information
cevro authored Oct 28, 2024
2 parents 70d007d + e3a20da commit 267a513
Show file tree
Hide file tree
Showing 49 changed files with 6,424 additions and 289 deletions.
25 changes: 25 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
module.exports = {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"react",
"@typescript-eslint"
],
"rules": {
}
};
2 changes: 1 addition & 1 deletion .github/workflows/php-psr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: Test
- if: failure()
name: Failure output
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: output
path: tests/**/*.actual
6 changes: 3 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '8.1']
php: ['8.1']
steps:
- uses: actions/checkout@v2
name: Checkout
Expand All @@ -27,13 +27,13 @@ jobs:
- run: composer run-script testCoverage
name: Test
- name: Archive code coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
path: coverage.html
- if: failure()
name: Failure output
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: output
path: tests/**/*.actual
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
},
"require-dev": {
"squizlabs/php_codesniffer": "3.7.1",
"nette/tester": "^v2.4.0"
"nette/tester": "^v2.4.0",
"phpstan/phpstan": "1.10.26"
},
"authors": [
{
Expand Down
Loading

0 comments on commit 267a513

Please sign in to comment.