Skip to content

Fixed a spelling mistake in the readme #528

Fixed a spelling mistake in the readme

Fixed a spelling mistake in the readme #528

name: Smoke Tests (Saucelabs)
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Cache the Maven packages to speed up build
uses: actions/cache@v1
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Snapshot Build
run: mvn clean install -T4 -DskipTests
- name: Smoke Tests
run: cd serenity-smoketests && mvn verify -Denvironment=saucelabs -Dsaucelabs.username=${{ secrets.SAUCELABS_USER }} -Dsaucelabs.accessKey=${{ secrets.SAUCELABS_KEY }}