Skip to content

feat(proxy version): Fix proxy package release flow #196

feat(proxy version): Fix proxy package release flow

feat(proxy version): Fix proxy package release flow #196

name: Integration Tests
on:
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: use cache if package-lock has not changed
uses: actions/cache@v2
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: npm install
- name: Run integration tests
run: npm run test:integration
env:
INTEGRATION_TEST_API_KEY: ${{secrets.INTEGRATION_TEST_API_KEY}}
INTEGRATION_TEST_CAAS: ${{secrets.INTEGRATION_TEST_CAAS}}
INTEGRATION_TEST_NAVIGATION_SERVICE: ${{secrets.INTEGRATION_TEST_NAVIGATION_SERVICE}}