Merge branch '2.x' into fix/export-import-tags

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