Skip to content

Merge pull request #2418 from FAIRsharing/dev #5917

Merge pull request #2418 from FAIRsharing/dev

Merge pull request #2418 from FAIRsharing/dev #5917

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Install Dependencies
run: npm install
- name: Run npm unit tests
run: npm run test:unit
- name: Update coverage to coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: './coverage/lcov.info'
- name: Update coverage to codacy
run: npm run codacy ${{ secrets.CODACY_PROJECT_TOKEN }}