Skip to content

RP-426 Update readme #20

RP-426 Update readme

RP-426 Update readme #20

Workflow file for this run

name: Intacct Node.js SDK CI
on:
push:
branches: [ "main" ]
pull_request:
workflow_dispatch:
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
name: Node.js v${{ matrix.node-version }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn --frozen-lockfile
- run: yarn run build
- run: yarn test