Skip to content

Commit

Permalink
Merge branch 'master' into use-full-relative-paths
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Aug 16, 2021
2 parents 8d7a936 + d369fd3 commit 30c7bc7
Show file tree
Hide file tree
Showing 13 changed files with 888 additions and 1,065 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Expand Up @@ -15,6 +15,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: "12.x"
cache: npm
- run: npm ci
- run: npm run build
- run: npx semantic-release
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -17,12 +17,13 @@ jobs:
- 12
- 14
- 16
name: Node ${{ matrix.node }}
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm test

Expand All @@ -34,5 +35,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
cache: npm
- run: npm ci
- run: "npm run validate:ts"
- run: "npm run validate:ts"
1 change: 1 addition & 0 deletions .github/workflows/update-prettier.yml
Expand Up @@ -11,6 +11,7 @@ jobs:
- uses: actions/setup-node@v2
with:
version: 12
cache: npm
- run: npm ci
- run: "npm run lint:fix"
- uses: gr2m/create-or-update-pull-request-action@v1.x
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/update.yml
Expand Up @@ -10,6 +10,8 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
cache: npm
- run: npm ci
- uses: gr2m/await-npm-package-version-action@v1
with:
Expand Down
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -646,7 +646,7 @@ If there are actions for a webhook, events are emitted for both, the webhook nam
| [`deploy_key`](https://developer.github.com/v3/activity/events/types/#deploykeyevent) | `created`<br>`deleted` |
| [`deployment`](https://developer.github.com/v3/activity/events/types/#deploymentevent) | `created` |
| [`deployment_status`](https://developer.github.com/v3/activity/events/types/#deploymentstatusevent) | `created` |
| [`discussion`](https://developer.github.com/v3/activity/events/types/#discussionevent) | `answered`<br>`category_changed`<br>`created`<br>`deleted`<br>`edited`<br>`locked`<br>`pinned`<br>`transferred`<br>`unanswered`<br>`unlocked`<br>`unpinned` |
| [`discussion`](https://developer.github.com/v3/activity/events/types/#discussionevent) | `answered`<br>`category_changed`<br>`created`<br>`deleted`<br>`edited`<br>`labeled`<br>`locked`<br>`pinned`<br>`transferred`<br>`unanswered`<br>`unlabeled`<br>`unlocked`<br>`unpinned` |
| [`discussion_comment`](https://developer.github.com/v3/activity/events/types/#discussioncommentevent) | `created`<br>`deleted`<br>`edited` |
| [`fork`](https://developer.github.com/v3/activity/events/types/#forkevent) | |
| [`github_app_authorization`](https://developer.github.com/v3/activity/events/types/#githubappauthorizationevent) | `revoked` |
Expand Down Expand Up @@ -688,6 +688,7 @@ If there are actions for a webhook, events are emitted for both, the webhook nam
| [`team_add`](https://developer.github.com/v3/activity/events/types/#teamaddevent) | |
| [`watch`](https://developer.github.com/v3/activity/events/types/#watchevent) | `started` |
| [`workflow_dispatch`](https://developer.github.com/v3/activity/events/types/#workflowdispatchevent) | |
| [`workflow_job`](https://developer.github.com/v3/activity/events/types/#workflowjobevent) | `completed`<br>`started` |
| [`workflow_run`](https://developer.github.com/v3/activity/events/types/#workflowrunevent) | `completed`<br>`requested` |

<!-- /autogenerated via scripts/generate-types.ts -->
Expand Down

0 comments on commit 30c7bc7

Please sign in to comment.