Fix contextItemAsFirstArgument to check type of contextItem #2470
Workflow file for this run
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: CI | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| test: | |
| name: Tests on node.js ${{ matrix.node-version }} | |
| runs-on: ubuntu-latest | |
| env: | |
| NODE_OPTIONS: '--max_old_space_size=4096' | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: | |
| - 20 | |
| - 18 | |
| - 16 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| submodules: recursive | |
| - uses: ./.github/workflows/download-qt3 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Unit tests against source | |
| run: npm run ci-test -- --reporter dot; | |
| - name: Unit tests against source with jscodegen | |
| run: npm run test-jscodegen -- --reporter dot; | |
| - name: Unit tests against bundle with jscodegen | |
| run: npm run test-jscodegen -- --dist --reporter dot; | |
| - name: QT3 tests against source | |
| run: npm run ci-qt3tests -- --reporter dot; | |
| - name: Unit tests against bundle | |
| run: npm run integrationtests -- --dist --reporter dot; | |
| - name: QT3 tests against bundle | |
| run: npm run qt3tests -- --dist --reporter dot; | |
| - name: Parser tests | |
| run: npm run ci-qt3testsxqueryx -- --reporter dot; | |
| - name: Update Facility tests | |
| run: npm run ci-xqutstests -- --reporter dot; | |
| - name: Update Facility parser tests | |
| run: npm run ci-xqutstestsxqueryx -- --reporter dot; | |
| - name: Fuzzer unit tests | |
| run: npm run fuzzertest | |
| - name: Combine coverage | |
| run: npm run coverage | |
| - name: Coveralls Parallel | |
| uses: coverallsapp/github-action@master | |
| with: | |
| github-token: ${{ secrets.github_token }} | |
| flag-name: run-${{ matrix.test_number }} | |
| parallel: true | |
| finish: | |
| needs: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Coveralls | |
| uses: coverallsapp/github-action@master | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| parallel-finished: true |