Fix RM4 Pro auth via hosts config #144
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: Build | |
| "on": | |
| - push | |
| jobs: | |
| build: | |
| name: "Build and Test on Node ${{ matrix.node_version }} and ${{ matrix.os }}" | |
| runs-on: "${{ matrix.os }}" | |
| strategy: | |
| matrix: | |
| node_version: | |
| - 18 | |
| - 20 | |
| - 22 | |
| os: | |
| - ubuntu-latest | |
| - macOS-latest | |
| - windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: "Use Node.js ${{ matrix.node_version }}" | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: "${{ matrix.node_version }}" | |
| - name: npm build and test | |
| run: | | |
| npm ci | |
| npm run lint |