From 435fab59b6531743ba61fbd9caea2742048fd6a3 Mon Sep 17 00:00:00 2001 From: Jemish Gopani Date: Sun, 14 Jul 2024 13:01:49 +0530 Subject: [PATCH] Update workflow and package information --- .github/workflows/build_check.yml | 22 ++++++++++++++++++++++ .travis.yml | 11 ----------- package.json | 9 +++++---- 3 files changed, 27 insertions(+), 15 deletions(-) create mode 100644 .github/workflows/build_check.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/build_check.yml b/.github/workflows/build_check.yml new file mode 100644 index 0000000..f330428 --- /dev/null +++ b/.github/workflows/build_check.yml @@ -0,0 +1,22 @@ +name: Build Check + +on: + push: + pull_request: + branches: + - "*" + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Use Node.js 10.x + uses: actions/setup-node@v3 + with: + node-version: 10.x + cache: 'npm' + - run: yarn --frozen-lockfile + - run: yarn lint + - run: yarn test diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 1c7661e..0000000 --- a/.travis.yml +++ /dev/null @@ -1,11 +0,0 @@ -language: node_js - -node_js: - - 10.5.0 - -install: - - yarn --frozen-lockfile - -script: - - yarn lint - - yarn test \ No newline at end of file diff --git a/package.json b/package.json index 0fa5925..70ebbd5 100644 --- a/package.json +++ b/package.json @@ -2,12 +2,12 @@ "name": "wdio-mochawesome-reporter", "version": "4.0.0", "description": "A WebdriverIO plugin. Generates json results in Mochawesome format.", - "author": "Jim Davis ", - "homepage": "https://github.com/fijijavis/wdio-mochawesome-reporter.git#readme", + "author": "Jemish Gopani ", + "homepage": "https://github.com/jemishgopani/wdio-mochawesome-reporter.git#readme", "license": "MIT", "repository": { "type": "git", - "url": "git+https://github.com/fijijavis/wdio-mochawesome-reporter.git" + "url": "git+https://github.com/jemishgopani/wdio-mochawesome-reporter.git" }, "main": "src/index.js", "files": [ @@ -26,7 +26,7 @@ "wdio-reporter" ], "bugs": { - "url": "https://github.com/fijijavis/wdio-mochawesome-reporter/issues" + "url": "https://github.com/jemishgopani/wdio-mochawesome-reporter/issues" }, "dependencies": { "@wdio/reporter": "^5.7.8", @@ -44,6 +44,7 @@ "jest-matchers": "^20.0.3" }, "contributors": [ + "Jemish Gopani", "Jim Davis" ], "peerDependencies": {