Add usage of InspectionSettings.eachScopeById #19
Workflow file for this run
This file contains 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 | |
steps: | |
- name: checkout | |
uses: actions/[email protected] | |
- name: setup node | |
uses: actions/[email protected] | |
with: | |
node-version: "18.17" | |
- run: node -v | |
- run: npm ci | |
- run: npm audit | |
- run: npm run build | |
- run: npm run test |