File: .github/workflows/node.js.yml

Recommend this page to a friend!
  Classes of Arturs Sosins   Countly Web SDK   .github/workflows/node.js.yml   Download  
File: .github/workflows/node.js.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Countly Web SDK
Track site accesses and errors the Countly API
Author: By
Last change: [Dependabot] Dependency and cypress fixes (#409)

* Dependency fixes

* broke the link

* removed build

* reverted code change
[Bug Fix] `clear_stored_id` flag, session cookie persistence fix (#375)

* first init

* event queue checks

* node version to 16

* --legacy-peer-deps

* added node 12 and 14

* request queue checks added

* file name change

* fixed a log issue

---------

Co-authored-by: ArtursKadikis <kadikis.arturs@gmail.com>
new flow (#222)
[541] workflow changes for docs (#220)

* doc testing

* doc generator changes

* 1

* fi erased

* nother fi

* erased

* lf

* added fis

* master tot merge

* reduced if check

* removed plugins

* plungs markdown

* brought back flows, script change, codacy badge change
Date: 5 months ago
Size: 816 bytes
 

Contents

Class file image Download
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: Cypress tests on: push: branches: [master, staging] pull_request: branches: [master, staging] jobs: build-and-test: strategy: matrix: node-version: [12.x, 14.x, 16.x] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Install Node.js uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - name: Install dependencies run: npm install --legacy-peer-deps - name: Run tests run: npm test