From f37113adcae2fdfca60180f2368997d0ac156613 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Estev=C3=A3o=20Soares=20dos=20Santos?= Date: Sun, 27 Mar 2022 03:54:45 +0100 Subject: [PATCH] test: split build by commits in browserstack --- .github/workflows/browserstack.yml | 50 ++++++++++++++++-------------- 1 file changed, 26 insertions(+), 24 deletions(-) diff --git a/.github/workflows/browserstack.yml b/.github/workflows/browserstack.yml index 1e58cb5..da8cf99 100644 --- a/.github/workflows/browserstack.yml +++ b/.github/workflows/browserstack.yml @@ -10,39 +10,41 @@ jobs: runs-on: ubuntu-latest steps: - - name: 'BrowserStack Env Setup' # Invokes the setup-env action - uses: browserstack/github-actions/setup-env@master - with: - username: ${{ secrets.BROWSERSTACK_USERNAME }} - access-key: ${{ secrets.BROWSERSTACK_ACCESSKEY }} - project-name: 'showdown' - - - name: 'BrowserStack Local Tunnel Setup' # Invokes the setup-local action - uses: browserstack/github-actions/setup-local@master - with: - local-testing: start - local-identifier: random - - # The next 3 steps are for building the web application to be tested and starting the web server on the runner environment - - - name: 'Checkout the repository' - uses: actions/checkout@v2 - - - name: '🚚 Upgrade NPM' - run: npm install -g npm - - - name: 'Use Node.js 17.x' + - name: '⚙ Setup Node.js v17.x' uses: actions/setup-node@v2 with: node-version: 17.x cache: 'npm' - - name: 'Install dependencies for CI' + - name: '📦 Checkout the repository' + uses: actions/checkout@v2 + + - name: '🚚 Upgrade NPM' + run: npm install -g npm + + - name: '🚚 Install dependencies for CI' run: npm ci - - name: 'Concatenate src files for testing' + - name: '🏗 Building src files for testing' run: npx grunt concat:test + - name: '📖 Get current package version' + uses: martinbeentjes/npm-get-version-action@v1.1.0 + + - name: '⚙ BrowserStack Env Setup' # Invokes the setup-env action + uses: browserstack/github-actions/setup-env@master + with: + username: ${{ secrets.BROWSERSTACK_USERNAME }} + access-key: ${{ secrets.BROWSERSTACK_ACCESSKEY }} + project-name: 'showdown' + build: ${{ steps.package-version.outputs.current-version}} - ${{ github.run_id }} + + - name: '⚙ BrowserStack Local Tunnel Setup' # Invokes the setup-local action + uses: browserstack/github-actions/setup-local@master + with: + local-testing: start + local-identifier: random + - name: 'Running test on BrowserStack with Karma' run: npx karma start karma.browserstack.js