From c45d66d97495aad58962a81884fad0fdabcdf8ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Estev=C3=A3o=20Soares=20dos=20Santos?= Date: Sun, 27 Mar 2022 00:25:36 +0000 Subject: [PATCH] try: fix github browserstack action --- .github/workflows/browserstack.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/browserstack.yml b/.github/workflows/browserstack.yml index 5c67fe2..35b0e85 100644 --- a/.github/workflows/browserstack.yml +++ b/.github/workflows/browserstack.yml @@ -30,12 +30,6 @@ jobs: - name: '🚚 Upgrade NPM' run: npm install -g npm - - name: '🚚 install grunt-cli' - run: npm install -g grunt-cli --force - - - name: '🚚 install karma globally' - run: npm install -g karma --force - - name: 'Use Node.js 17.x' uses: actions/setup-node@v2 with: @@ -46,10 +40,10 @@ jobs: run: npm ci - name: 'Concatenate src files for testing' - run: grunt concat:test + run: npx grunt concat:test - name: 'Running test on BrowserStack with Karma' - run: karma start karma.browserstack.js + run: npx karma start karma.browserstack.js - name: 'BrowserStackLocal Stop' # Terminating the BrowserStackLocal tunnel connection uses: browserstack/github-actions/setup-local@master