From 916b52a122edb69c559923f98db18b30ac69f269 Mon Sep 17 00:00:00 2001 From: Shahzada Modassir <152081666+shahzadamodassir@users.noreply.github.com> Date: Wed, 24 Jan 2024 22:53:23 +0530 Subject: [PATCH] Create nodejs.yml --- .github/workflows/nodejs.yml | 38 ++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/nodejs.yml diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml new file mode 100644 index 0000000..c128edd --- /dev/null +++ b/.github/workflows/nodejs.yml @@ -0,0 +1,38 @@ +name: CI + +on: [push, pull_request] + +env: + NODE_VERSION: '16.x' + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Cache + uses: actions/cache@v2 + with: + path: ~/.npm + key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }} + restore-keys: | + ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock- + + - name: Use Node.js ${{ env.NODE_VERSION }} + uses: actions/setup-node@v2.1.2 + with: + node-version: ${{ env.NODE_VERSION }} + + - name: Install dependencies + run: | + npm install + + - name: Run tests + env: + BROWSER_STACK_USERNAME: ${{ secrets.BROWSER_STACK_USERNAME }} + BROWSER_STACK_ACCESS_KEY: ${{ secrets.BROWSER_STACK_ACCESS_KEY }} + run: | + export PATH=${HOME}/firefox:$PATH + npm test