diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2022-12-06 14:56:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-06 14:56:08 +0100 |
commit | de3c5f2b1c7180b7aad771bbf50d02082c480d14 (patch) | |
tree | 1ec7af3a8cb8fab5b68ca9c51d51588f1b614fe5 | |
parent | b981b23e3da0147c11606fb57936da3a03263ab1 (diff) | |
download | nextcloud-server-de3c5f2b1c7180b7aad771bbf50d02082c480d14.tar.gz nextcloud-server-de3c5f2b1c7180b7aad771bbf50d02082c480d14.zip |
Update node check to not run sass twice
They are now included in the `postbuild` npm step
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
-rw-r--r-- | .github/workflows/node.yml | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index 7173a224c24..443ed95dd24 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -45,12 +45,6 @@ jobs: npm ci npm run build --if-present - - name: Build css - run: npm run sass - - - name: Build icons css - run: npm run sass:icons - - name: Check webpack build changes run: | bash -c "[[ ! \"`git status --porcelain `\" ]] || (echo 'Please recompile and commit the assets, see the section \"Show changes on failure\" for details' && exit 1)" |