Remove vargs check as arg order switched to match client Page #150
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: | |
- master | |
- derby-2 | |
pull_request: | |
branches: | |
- master | |
- derby-2 | |
jobs: | |
test: | |
name: Node ${{ matrix.node }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: | |
- 16 | |
- 18 | |
- 20 | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install | |
run: npm install | |
- name: Test | |
run: npm run checks |