Skip to content

Commit 1e1c77a

Browse files
committed
wip
1 parent 5a6d44f commit 1e1c77a

File tree

11 files changed

+196
-70
lines changed

11 files changed

+196
-70
lines changed

.github/workflows/npm-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: composer install -n --prefer-dist
2525

2626
- name: "Use Node.js"
27-
uses: actions/setup-node@v4
27+
uses: actions/setup-node@v6
2828
with:
2929
node-version: '22.x'
3030
cache: 'npm'

.github/workflows/npm-format-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: actions/checkout@v4
1313

1414
- name: "Use Node.js"
15-
uses: actions/setup-node@v4
15+
uses: actions/setup-node@v6
1616
with:
1717
node-version: '22.x'
1818
cache: 'npm'

.github/workflows/npm-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@v4
1515

1616
- name: "Use Node.js"
17-
uses: actions/setup-node@v4
17+
uses: actions/setup-node@v6
1818
with:
1919
node-version: '22.x'
2020
cache: 'npm'

.github/workflows/npm-typecheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: composer install -n --prefer-dist
2424

2525
- name: "Use Node.js"
26-
uses: actions/setup-node@v4
26+
uses: actions/setup-node@v6
2727
with:
2828
node-version: '22.x'
2929

.github/workflows/phpunit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: "Run composer install"
4949
run: composer install -n --prefer-dist
5050

51-
- uses: actions/setup-node@v4
51+
- uses: actions/setup-node@v6
5252
with:
5353
node-version: '22.x'
5454
cache: 'npm'
@@ -73,7 +73,7 @@ jobs:
7373
run: php artisan test --stop-on-failure --coverage-text --coverage-clover=coverage.xml
7474

7575
- name: "Upload coverage reports to Codecov"
76-
uses: codecov/codecov-action@v5.4.3
76+
uses: codecov/codecov-action@v5.5.1
7777
with:
7878
token: ${{ secrets.CODECOV_TOKEN }}
7979
slug: solidtime-io/solidtime

.github/workflows/pint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
uses: actions/checkout@v4
1313

1414
- name: "Check code style"
15-
uses: aglipanci/laravel-pint-action@2.5
15+
uses: aglipanci/laravel-pint-action@2.6
1616
with:
1717
configPath: "pint.json"

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
uses: actions/checkout@v4
3535

3636
- name: "Setup node"
37-
uses: actions/setup-node@v4
37+
uses: actions/setup-node@v6
3838
with:
3939
node-version: '22.x'
4040

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,6 @@
1313
"format:check": "prettier --check './**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts,vue}'"
1414
},
1515
"devDependencies": {
16-
"eslint": "^9.19.0",
17-
"eslint-config-prettier": "^9.1.0",
18-
"eslint-plugin-vue": "^9.30.0",
19-
"globals": "^15.12.0",
20-
"typescript-eslint": "^8.18.2",
2116
"@eslint/eslintrc": "^3.2.0",
2217
"@eslint/js": "^9.19.0",
2318
"@inertiajs/vue3": "^1.0.0",
@@ -30,15 +25,20 @@
3025
"@vue/tsconfig": "^0.5.1",
3126
"autoprefixer": "^10.4.20",
3227
"axios": "^1.6.4",
28+
"eslint": "^9.19.0",
29+
"eslint-config-prettier": "^9.1.0",
3330
"eslint-plugin-unused-imports": "^4.1.4",
31+
"eslint-plugin-vue": "^9.30.0",
32+
"globals": "^15.12.0",
3433
"laravel-vite-plugin": "^1.0.0",
3534
"openapi-zod-client": "^1.16.2",
3635
"postcss": "^8.4.47",
3736
"postcss-nesting": "^12.1.5",
3837
"prettier": "^3.3.3",
3938
"tailwindcss": "^3.4.13",
4039
"typescript": "^5.7.3",
41-
"vite": "^6.0.11",
40+
"typescript-eslint": "^8.18.2",
41+
"vite": "^6.3.6",
4242
"vite-plugin-checker": "^0.8.0",
4343
"vue": "^3.5.0",
4444
"vue-tsc": "^2.2.0"

0 commit comments

Comments
 (0)