Merge pull request #276 from google/275-configurable-connecttimeout #396
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: Build with webpack and lint with gts | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- uses: actions/checkout@v4 | |
- name: Build for Test Page | |
working-directory: ./docs/servo_power_test/ | |
run: npm install | |
- name: Run tests for Test Page | |
working-directory: ./docs/servo_power_test/ | |
run: npm run lint | |
- name: Build for Monitor Page | |
working-directory: ./docs/servo_power_monitor/ | |
run: npm install | |
- name: Run tests for Monitor Page | |
working-directory: ./docs/servo_power_monitor/ | |
run: npm run lint |