Skip to content

Commit

Permalink
test(github-actions): migrate tests to GitHub Actions (#89)
Browse files Browse the repository at this point in the history
test(github-actions): migrate tests to GitHub Actions

Migrate PubNub SDK test suite from Travis to GitHub Actions.

build(workflow): improve tests and validation workflows
  • Loading branch information
parfeon authored Jan 3, 2023
1 parent 9cfff38 commit f4f6e9e
Show file tree
Hide file tree
Showing 7 changed files with 1,623 additions and 1,777 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Tests

on:
push:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash

jobs:
tests:
name: Integration and Unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
- name: Checkout actions
uses: actions/checkout@v3
with:
repository: pubnub/client-engineering-deployment-tools
ref: v1
token: ${{ secrets.GH_TOKEN }}
path: .github/.release/actions
- name: Setup NodeJS 17.5.0
uses: actions/setup-node@v3
with:
node-version: 17.5.0
- name: Build and run tests for NodeJS 17.5.0
run: |
npm ci
npm test
- name: Cancel workflow runs for commit on error
if: failure()
uses: ./.github/.release/actions/actions/utils/fast-jobs-failure
all-tests:
name: Tests
runs-on: ubuntu-latest
needs: [tests]
steps:
- name: Tests summary
run: echo -e "\033[38;2;95;215;0m\033[1mAll tests successfully passed"
12 changes: 11 additions & 1 deletion .github/workflows/run-validations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ defaults:
shell: bash

jobs:
repository-validators:
pubnub-yml:
name: 'Validate .pubnub.yml'
runs-on: ubuntu-latest
steps:
Expand All @@ -28,3 +28,13 @@ jobs:
uses: ./.github/.release/actions/actions/validators/pubnub-yml
with:
token: ${{ secrets.GH_TOKEN }}
- name: Cancel workflow runs for commit on error
if: failure()
uses: ./.github/.release/actions/actions/utils/fast-jobs-failure
all-validations:
name: Validations
runs-on: ubuntu-latest
needs: [pubnub-yml]
steps:
- name: Validations summary
run: echo -e "\033[38;2;95;215;0m\033[1mAll validations passed"
Loading

0 comments on commit f4f6e9e

Please sign in to comment.