Skip to content

Commit

Permalink
v2.1.6; changes to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandrRogov committed Sep 10, 2024
1 parent bf2edeb commit 541635c
Show file tree
Hide file tree
Showing 17 changed files with 2,781 additions and 6,369 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [16.x, 18.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
# - run: npm run build --if-present
- run: npm test
- name: Prepare coverage
if: ${{ matrix.node-version == '16.x' }}
if: ${{ matrix.node-version == '20.x' }}
run: npm run coverage
- name: Publish to Coveralls
if: ${{ matrix.node-version == '16.x' }}
uses: coverallsapp/github-action@master
if: ${{ matrix.node-version == '20.x' }}
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ As well as Microsoft Dynamics 365 CE (online), Microsoft Dynamics 365 CE (on-pre
## Main Features

- **Microsoft Dataverse Search API**. Access the full power of its Search, Suggestion and Autocomplete capabilities.
- **Batch Requests**. Convert all requests into a Batch operation with twi lines of code.
- **Batch Requests**. Convert all requests into a Batch operation with two lines of code.
- **Simplicity and Automation**. Such as automated paging, big file downloading/uploading in chunks of data, automated conversion of requests with long URLs into a Batch Request in the background and more!
- **CRUD operations**. Including Fetch XML, Actions and Functions in Microsoft Dataverse Web API.
- **Table Definitions (Entity Metadata)**. Query and modify Table, Column, Choice (Option Set) and Relationship definitions.
Expand Down
Loading

0 comments on commit 541635c

Please sign in to comment.