Put instance_url
at the root of configuration schema for Salesforce OAuth
#1151
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
# Runs when a pull request is created or its head is updated | |
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request | |
on: pull_request | |
jobs: | |
build: | |
name: 'Build and Test' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.17.1] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.6.9 | |
- name: Setup node ${{ matrix.node-version }} | |
# https://github.com/actions/setup-node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- name: Setup pnpm | |
run: pnpm install --frozen-lockfile | |
- name: Build | |
run: pnpm run build | |
- name: Unit Tests | |
run: pnpm run test |