Skip to content

Add missing PHP unit tests for updating the subscription source to payment method on item repair #3798

Add missing PHP unit tests for updating the subscription source to payment method on item repair

Add missing PHP unit tests for updating the subscription source to payment method on item repair #3798

Workflow file for this run

name: JS tests
on:
pull_request
jobs:
test:
name: JS testing
runs-on: ubuntu-latest
steps:
# clone the repository
- uses: actions/checkout@v2
# use the node version defined in nvmrc
- uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
# enable dependencies caching
- uses: actions/cache@v2
with:
path: ~/.npm/
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
# install dependencies and run linter
- run: npm ci && npm run test:js