Skip to content

Commit

Permalink
Fix broken doc links (actions#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmgross authored and bryanmacfarlane committed Dec 23, 2019
1 parent e7cbd69 commit 5feb835
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/github-package.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Note that a complete version of this action can be found at https://github.com/d

## Prerequisites

This walkthrough assumes that you have gone through the basic [javascript action walkthrough](./javascript-action.md) and have a basic action set up. If not, we recommend you go through that first.
This walkthrough assumes that you have gone through the basic [javascript action walkthrough](https://github.com/actions/javascript-action) and have a basic action set up. If not, we recommend you go through that first.

## Installing dependencies

Expand Down Expand Up @@ -159,7 +159,7 @@ run();

## Writing unit tests for your action

Next, we're going to write a basic unit test for our action using jest. If you followed the [javascript walkthrough](./javascript-action.md), you should have a file `__tests__/main.test.ts` that runs tests when `npm test` is called. We're going to start by populating that with one test:
Next, we're going to write a basic unit test for our action using jest. If you followed the [javascript walkthrough](https://github.com/actions/javascript-action), you should have a file `__tests__/main.test.ts` that runs tests when `npm test` is called. We're going to start by populating that with one test:

```ts
const nock = require('nock');
Expand Down

0 comments on commit 5feb835

Please sign in to comment.