Skip to content

Configure Renovate #796

Configure Renovate

Configure Renovate #796

Workflow file for this run

# This workflow will do a clean install of node dependencies, 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: CI
on:
push:
branches: [main]
tags:
pull_request:
jobs:
build-test:
runs-on: ubuntu-latest
container: node:12
env:
MAILCHIMP_API_KEY: fakedmailchimpkey-eu
steps:
- uses: actions/checkout@v2
- run: npm ci
- run: npm run build
- run: npm test -- --coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: .coverage/lcov.info