Link to page with posts of specific type

First, never use query_posts, use WP_Query to create additional queries.

When you register your post type, set has_archive to true, or a string which will be the URL slug for your post type archive.

You can then use get_post_type_archive_link() to output the URL to your post type archive.

<a href="https://wordpress.stackexchange.com/questions/210453/<?php echo get_post_type_archive_link("issues' ); ?>"><li>View All</li></a>