Skip to content

Set up for Automated Node sdk tests #20

Set up for Automated Node sdk tests

Set up for Automated Node sdk tests #20

Workflow file for this run

name: Trigger Tests on Pull Request.
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '21.x'
- name: Install dependencies
run: npm install
- name: Run Tests
run: CLIENT_ID=$PG_CLIENT_ID SECRET_KEY=$PG_CLIENT_SECRET npm test
env:
PG_CLIENT_ID: ${{ secrets.XCLIENTIDSANDBOX }}
PG_CLIENT_SECRET: ${{ secrets.XCLIENTSECRETSANDBOX }}