fix(pubsublite): Disable integration tests for project id (#3087)

Co-authored-by: Alex Hong <9397363+hongalex@users.noreply.github.com>
diff --git a/pubsublite/integration_test.go b/pubsublite/integration_test.go
index 3568f59..7a5e1a3 100644
--- a/pubsublite/integration_test.go
+++ b/pubsublite/integration_test.go
@@ -16,6 +16,7 @@
 import (
 	"context"
 	"math/rand"
+	"strconv"
 	"testing"
 	"time"
 
@@ -50,6 +51,10 @@
 	if testutil.ProjID() == "" {
 		t.Skip("Integration tests skipped. See CONTRIBUTING.md for details")
 	}
+	// The Pub/Sub Lite server will accept project ID or number by EOQ4, 2020.
+	if _, err := strconv.ParseInt(testutil.ProjID(), 10, 64); err != nil {
+		t.Skip("Integration tests skipped. Only project number currently supported.")
+	}
 	rng = testutil.NewRand(time.Now())
 }