Skip to content

Commit

Permalink
adding more deps
Browse files Browse the repository at this point in the history
  • Loading branch information
bizob2828 committed Sep 15, 2021
1 parent 2f8fd8d commit 66b4659
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,16 +91,21 @@ jobs:
githubToken: ${{ github.token }}
install: |
apt-get update -q -y
apt-get install -q -y curl python
apt-get install -q -y curl python make gcc-c++
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
export NVM_DIR="$HOME/.nvm"
. "$NVM_DIR/nvm.sh"
nvm install ${{ matrix.node-version }}
run: |
export NVM_DIR="$HOME/.nvm"
. "$NVM_DIR/nvm.sh"
echo "Checking current node"
nvm current
echo "install deps"
npm ci
echo "rebuild native metrics module"
npm run rebuild
echo "run unit tests"
npm run unit
echo "run integration tests"
npm run integration

0 comments on commit 66b4659

Please sign in to comment.