Fix the bug that fillRequestOptions() does not respect method option #16
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: Node.js CI | |
on: | |
pull_request: | |
branches: [master] | |
paths: | |
- 'src/**' | |
- 'tests/**' | |
- 'package.json' | |
- 'package-lock.json' | |
- '.github/workflows/ci-pull-request.yml' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: npm ci | |
- run: npm run lint | |
- run: npm run build | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: build | |
path: build | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [10.x, 12.x, 14.x, 16.x] | |
needs: build | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Setup MediaWiki instance using Docker for integration tests | |
run: npm run setuplocalwiki | |
- run: npm ci | |
- uses: actions/download-artifact@v4 | |
- run: npm run test:localwiki && npm run test:nowiki |