Skip to content

Commit

Permalink
fail coverage
Browse files Browse the repository at this point in the history
Signed-off-by: andrew-coleman <[email protected]>
  • Loading branch information
andrew-coleman committed Sep 27, 2022
1 parent cfd25c2 commit 816210d
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 55 deletions.
65 changes: 65 additions & 0 deletions .github/workflows/jsonata.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: Build and publish JSONata
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
publish:
needs: build
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && github.repository == 'jsonata-js/jsonata' }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
registry-url: 'https://registry.npmjs.org'
- name: Install and build
run: npm install && npm test
- name: Publish to NPM
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
documentation:
needs: build
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && github.repository == 'jsonata-js/jsonata' }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Build documentation
run: |
cd website
npm install
npm run build
- name: Deploy to GitHub Pages
if: success()
run: |
cd website
git config --global user.name "andrew-coleman"
git config --global user.email "[email protected]"
echo "machine github.com login ${GIT_USER} password ${{ secrets.GITHUB_TOKEN }}" > ~/.netrc
npm run publish-gh-pages
env:
GIT_USER: andrew-coleman
27 changes: 0 additions & 27 deletions .github/workflows/node.js.yml

This file was deleted.

27 changes: 0 additions & 27 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion src/jsonata.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ var jsonata = (function() {
case 'transform':
result = evaluateTransformExpression(expr, input, environment);
break;
}
}

if (Object.prototype.hasOwnProperty.call(expr, 'predicate')) {
for(var ii = 0; ii < expr.predicate.length; ii++) {
Expand Down

0 comments on commit 816210d

Please sign in to comment.