Skip to content

chore: upgrade nodejs version to v16.19.0 #115

chore: upgrade nodejs version to v16.19.0

chore: upgrade nodejs version to v16.19.0 #115

Workflow file for this run

name: Test
on:
push:
branches:
- "master"
pull_request:
branches:
- "master"
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node-version:
- 16.19.0
steps:
- name: CHECKOUT GIT REPOSIRORY
uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: INSTALL PROJECT DEPENDENCIES
run: lerna bootstrap --hoist --ci
- name: RUN BUILD
run: npm run build
- name: Running tests
run: npm t
- name: Upload coverage data to codacy
uses: codacy/codacy-coverage-reporter-action@master
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage/cobertura-coverage.xml