diff --git a/.gitattributes b/.gitattributes index b424a238..a3b69e3c 100644 --- a/.gitattributes +++ b/.gitattributes @@ -12,6 +12,7 @@ /js-tests export-ignore /phpstan.neon.dist export-ignore /phpunit.xml.dist export-ignore +/pint.json export-ignore /public/build/assets/** linguist-generated /tests export-ignore /yarn.lock export-ignore linguist-generated diff --git a/.github/workflows/front-end.yml b/.github/workflows/front-end.yml index 9c9b36c4..39ac1409 100644 --- a/.github/workflows/front-end.yml +++ b/.github/workflows/front-end.yml @@ -3,7 +3,7 @@ name: "Front-end" # ECMAScript version: 2018 -# Node.js version: 18.12 +# Node.js version: 23 # Yarn version: 1 on: @@ -33,7 +33,7 @@ jobs: name: "Set up Node.js" uses: "actions/setup-node@v4" with: - node-version: "18" + node-version: "23" check-latest: true cache: "yarn" - @@ -60,7 +60,7 @@ jobs: name: "Set up Node.js" uses: "actions/setup-node@v4" with: - node-version: "18" + node-version: "23" cache: "yarn" - name: "Configure yarn" @@ -87,7 +87,7 @@ jobs: name: "Set up Node.js" uses: "actions/setup-node@v4" with: - node-version: "18" + node-version: "23" cache: "yarn" - name: "Configure yarn" diff --git a/pint.json b/pint.json new file mode 100644 index 00000000..4b4f9409 --- /dev/null +++ b/pint.json @@ -0,0 +1,6 @@ +{ + "preset": "laravel", + "rules": { + "declare_strict_types": true + } +}