Skip to content

Merge pull request #25 from salman2013/salman/add-renovate-config-file #52

Merge pull request #25 from salman2013/salman/add-renovate-config-file

Merge pull request #25 from salman2013/salman/add-renovate-config-file #52

Workflow file for this run

name: Node CI
on:
push:
branches:
- master
pull_request:
branches:
- '**'
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Nodejs Env
run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
- name: Setup Nodejs
uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VER }}
- name: Install dependencies
run: npm ci
# The owning team will fix the issues and uncomment the steps after necessary linting and configuring changes
- name: Lint
run: npm run lint
# - name: Test
# run: |
# npm run test_compile
# npm run test_comments