diff --git a/CHANGELOG.md b/CHANGELOG.md index 61f5388..ca35295 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## [1.9.2] + +- [#20](https://github.com/estruyf/playwright-github-actions-reporter/issues/20): Added `GitHubActionOptions` as export + ## [1.9.1] - [#20](https://github.com/estruyf/playwright-github-actions-reporter/issues/20): Add declaration file to the package diff --git a/package-lock.json b/package-lock.json index 1ab4db9..42e0029 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@estruyf/github-actions-reporter", - "version": "1.9.1", + "version": "1.9.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@estruyf/github-actions-reporter", - "version": "1.9.1", + "version": "1.9.2", "license": "MIT", "dependencies": { "@actions/core": "^1.10.0", diff --git a/package.json b/package.json index cf03769..630781f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@estruyf/github-actions-reporter", - "version": "1.9.1", + "version": "1.9.2", "description": "GitHub Actions reporter for Playwright", "main": "dist/index.js", "scripts": { diff --git a/src/index.ts b/src/index.ts index 9914574..3e783e1 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,6 +9,7 @@ import type { } from "@playwright/test/reporter"; import { processResults } from "./utils/processResults"; import { GitHubActionOptions } from "./models"; +export { GitHubActionOptions } from "./models"; class GitHubAction implements Reporter { private suite: Suite | undefined;