Completion improvements #88
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: Gated pull request | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build-and-test: | |
| runs-on: windows-latest | |
| permissions: | |
| contents: read | |
| actions: read | |
| checks: write | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v5 | |
| - name: setup node | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version-file: "package.json" | |
| - run: node -v | |
| - run: npm ci | |
| - name: Run npm audit | |
| continue-on-error: true | |
| run: npm audit | |
| - run: npm run lint | |
| - run: npm run build | |
| - name: Run tests | |
| run: npm run test | |
| - name: Publish test results | |
| uses: dorny/test-reporter@v2.1.1 | |
| if: success() || failure() | |
| with: | |
| name: Mocha Tests | |
| path: test-results.xml | |
| reporter: java-junit | |
| fail-on-error: true |