it("should match the pattern with build", () => {
    expect(isRight(Semver.decode("1.20.3.0"))).toBeTruthy();
    expect(isLeft(Semver.decode("0.01.0.0"))).toBeTruthy();
  });