Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ jobs:
run: make generate_sdks
- name: Lint
run: make lint_provider
- name: Execute tests
run: make test

config:
name: Check GoReleaser config
Expand Down
10 changes: 6 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ TFGEN := pulumi-tfgen-${PACK}
PROVIDER := pulumi-resource-${PACK}
VERSION := $(shell pulumictl get version)

TESTPARALLELISM := 4

WORKING_DIR := $(shell pwd)

OS := $(shell uname)
Expand Down Expand Up @@ -140,8 +138,12 @@ install_nodejs_sdk::

install_sdks:: install_dotnet_sdk install_python_sdk install_nodejs_sdk

test::
cd examples && go test -v -tags=all -parallel ${TESTPARALLELISM} -timeout 2h
test_ts::
@echo "--- Run Pulumi TypeScript Unit Tests ---"
npm install
npm test
Comment thread
Fyusel marked this conversation as resolved.

test:: test_ts

fmt:
@gofmt -s -w .
Expand Down
Loading
Loading