File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ jobs:
111111 - name : Check worktree clean
112112 run : |
113113 git update-index -q --refresh
114- if ! git diff-files --quiet; then
114+ if ! git diff-files --quiet -- ':(exclude)yarn.lock' ':(exclude)sdk/nodejs/yarn.lock' ; then
115115 >&2 echo "error: working tree is not clean, aborting!"
116116 git status
117117 git diff
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ build_nodejs:: VERSION := $(shell pulumictl get version --language javascript)
6161build_nodejs :: install_plugins tfgen # build the node sdk
6262 $(WORKING_DIR ) /bin/$(TFGEN ) nodejs --overlays provider/overlays/nodejs --out sdk/nodejs/
6363 cd sdk/nodejs/ && \
64- yarn install --frozen-lockfile && \
64+ yarn install && \
6565 yarn run tsc && \
6666 cp ../../README.md ../../LICENSE package.json yarn.lock ./bin/ && \
6767 sed -i.bak -e "s/\$${VERSION}/$(VERSION)/g" ./bin/package.json
You can’t perform that action at this time.
0 commit comments