Skip to content

Commit

Permalink
Fix CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
Skrypt committed Dec 20, 2024
1 parent 3314011 commit e476a06
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/assets_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ jobs:
- uses: actions/checkout@v4
- name: Rebuild packages
run: |
yarn install
yarn gulp-rebuild
corepack install
corepack enable
yarn install
yarn build
- name: Check if git has changes
shell: pwsh
Expand Down
20 changes: 11 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,21 @@
"version": "1.0.0",
"packageManager": "[email protected]",
"scripts": {
"build": "gulp build && asset-bundler build",
"rebuild": "gulp rebuild",
"copy": "asset-bundler copy",
"gulpwatch": "gulp watch",
"watch": "asset-bundler watch",
"dry-run": "asset-bundler dry-run",
"clean": "asset-bundler clean",
"lint": "eslint .",
"gulp-build": "gulp build",
"gulp-watch": "gulp watch",
"gulp-rebuild": "gulp rebuild",
"postinstall": "node .scripts/install.js",
"update-projects": "node .scripts/update.js",
"install-project": "node .scripts/project.js install",
"update-project": "node .scripts/project.js update",
"cleanup": "node .scripts/cleanup.js"
"cleanup": "node .scripts/cleanup.js",

"build": "asset-bundler build",
"copy": "asset-bundler copy",
"watch": "asset-bundler watch",
"dry-run": "asset-bundler dry-run",
"clean": "asset-bundler clean",
"lint": "eslint ."
},
"workspaces": [
".scripts/assets-build-tool",
Expand Down

0 comments on commit e476a06

Please sign in to comment.