Prevent object prototype pollution (#799) #202
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build JSONata | |
| on: | |
| push: | |
| branches: [ master, v1 ] | |
| pull_request: | |
| branches: [ master, v1 ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [12.x, 14.x, 16.x, 18.x, 20.x, 22.x, 24.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 | |
| 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 24.x | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 24.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 "andrew_coleman@uk.ibm.com" | |
| echo "machine github.com login andrew-coleman password ${{ secrets.DOCS_AUTH }}" > ~/.netrc | |
| npm run publish-gh-pages | |
| env: | |
| GIT_USER: andrew-coleman |