Add QueryParametersInCollectionGet linter rule (#745) #57
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: Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
node-version: [18, 20] | |
exclude: | |
- os: ubuntu-latest | |
node-version: 20 | |
- os: windows-latest | |
node-version: 18 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node ${{ matrix.node-version }}.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }}.x | |
- name: rush install | |
run: node common/scripts/install-run-rush.js install | |
- name: rush build | |
run: node common/scripts/install-run-rush.js build --verbose | |
- name: rush lint | |
run: node common/scripts/install-run-rush.js lint | |
- name: rush test | |
run: node common/scripts/install-run-rush.js test | |
- name: rush regen-ruleindex | |
run: node common/scripts/install-run-rush.js regen-ruleindex |