Skip to content

Update command & tests for API error #16

Update command & tests for API error

Update command & tests for API error #16

Workflow file for this run

name: CI Test Suite
on:
- push
- workflow_dispatch
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: ['16.x', '20.x']
os: ['sfdc-hk-ubuntu-latest', 'sfdc-hk-macos-latest', 'sfdc-hk-windows-latest']
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
cache: yarn
- run: yarn --immutable --network-timeout 1000000
- name: Unit tests
run: yarn test
- name: Check linting
run: yarn lint