Skip to content

feat: add new 'sf crud-mdapi read' command #712

feat: add new 'sf crud-mdapi read' command

feat: add new 'sf crud-mdapi read' command #712

Workflow file for this run

name: Test and Release
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
default:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .node-version
- name: Install dependencies
run: |
npm ci
npm install --global @salesforce/cli
- name: Run tests
run: npm run test
- name: Run E2E tests in Developer Edition
env:
SFDX_AUTH_URL_DEVED: ${{ secrets.SFDX_AUTH_URL_DEVED }}
run: |
echo "${SFDX_AUTH_URL_DEVED}" | sf org login sfdx-url --set-default --alias deved --sfdx-url-stdin
npm run test:e2e
- name: Release package
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}