nus-cs3281 / 2024

1 stars 2 forks source link

Fix failing GitHub action #43

Closed jayasting98 closed 4 months ago

jayasting98 commented 4 months ago

This updates the workflow to use the current sample GitHub Actions workflow on the MarkBind user guide.

It was failing due to the nullish coalescing operator used in the following code introduced in a recent MarkBind pull request MarkBind/markbind#2395.

image

The nullish coalescing operator was introduced in Node.js v14, but the current workflow uses Node.js v10.

image

damithc commented 4 months ago

Thanks for the fix, @jayasting98