Skip to content

[fix] apply suggestions from gitroll #26

[fix] apply suggestions from gitroll

[fix] apply suggestions from gitroll #26

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: Node.js CI
on:
push:
branches: [ dev, master ]
pull_request:
branches: [ dev, master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
PROVIDER_CALLBACK_HOST: ${{secrets.PROVIDER_CALLBACK_HOST}}
TARGET_ENVIRONMENT: ${{secrets.TARGET_ENVIRONMENT}}
COLLECTIONS_PRIMARY_KEY: ${{secrets.COLLECTIONS_PRIMARY_KEY}}
COLLECTIONS_SECONDARY_KEY: ${{secrets.COLLECTIONS_SECONDARY_KEY}}
DISBURSEMENTS_PRIMARY_KEY: ${{secrets.DISBURSEMENTS_PRIMARY_KEY}}
DISBURSEMENTS_SECONDARY_KEY: ${{secrets.DISBURSEMENTS_SECONDARY_KEY}}
REMITTANCES_PRIMARY_KEY: ${{secrets.REMITTANCES_PRIMARY_KEY}}
REMITTANCES_SECONDARY_KEY: ${{secrets.REMITTANCES_SECONDARY_KEY}}