it("should match the pattern", () => {
    expect(isRight(Semver.decode("1.20.3"))).toBeTruthy();
    expect(isLeft(Semver.decode("0.01.0"))).toBeTruthy();
  });