chore: use npm insteadof gulp in github workflows
We try to hide the build internals so use the same commands as described in the README file. Also trigger the workflow run on package.json change, otherwise, npm script changes won't be tested.
... | ... | @@ -15,7 +15,8 @@ |
], | ||
"scripts": { | ||
"bundle": "gulp bundle", | ||
"dev": "gulp preview" | ||
"dev": "gulp preview", | ||
"preview:build": "gulp preview:build" | ||
}, | ||
"devDependencies": { | ||
"@csstools/postcss-sass": "^4.0.0", | ||
... | ... |
Please register or sign in to comment