Merge branch '2.x' into fix/getstats-graceful-failure

This commit is contained in:
KodeStar
2026-07-08 16:09:42 +01:00
3 changed files with 9 additions and 9 deletions
+7 -7
View File
@@ -31,17 +31,17 @@ jobs:
cp .env.example .env
php artisan key:generate
- name: Cache yarn dependencies
uses: actions/cache@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
path: node_modules
key: yarn-${{ hashFiles('yarn.lock') }}
node-version: '24'
cache: 'npm'
- name: Run yarn
run: yarn && yarn dev
- name: Install node modules and build assets
run: npm ci && npm run dev
- name: Run ESLint
run: yarn lint
run: npm run lint
- name: Run tests
run: php artisan test
+1 -1
View File
@@ -5,7 +5,7 @@
"packages": {
"": {
"dependencies": {
"select2": "^4.0.13",
"select2": "~4.0.13",
"sortablejs": "^1.15.0"
},
"devDependencies": {
+1 -1
View File
@@ -26,7 +26,7 @@
"webpack-cli": "^6.0.1"
},
"dependencies": {
"select2": "^4.0.13",
"select2": "~4.0.13",
"sortablejs": "^1.15.0"
}
}