Skip to content

[stable3.5] fix(appointments): Rate limit config creation and booking #5365

[stable3.5] fix(appointments): Rate limit config creation and booking

[stable3.5] fix(appointments): Rate limit config creation and booking #5365

Workflow file for this run

name: JS Tests
on:
pull_request:
push:
branches:
- main
jobs:
jest:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 15, 16]
name: node${{ matrix.node-version }}
steps:
- uses: actions/checkout@v2
- name: Set up node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Set up npm 7
run: npm i -g npm@7
- name: Install dependencies
run: npm ci
- name: Test
run: npm run test:coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage/coverage-final.json
flags: javascript
fail_ci_if_error: true