Update usage.md with npm_ping and custom NPM task info
#459
Workflow file for this run
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 Examples | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| examples: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Source Code | |
| uses: actions/checkout@v4 | |
| - name: Install Java | |
| uses: actions/setup-java@v2 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 11 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| - name: Gradle Version | |
| run: ./gradlew --version | |
| - name: Build Node.js Scripts Project | |
| run: ./gradlew -p examples/simple-node helloWorld | |
| # - name: Build Spring Boot Angular Project | |
| # run: ./gradlew -p examples/spring-boot-angular build | |
| # - name: Build Vert.x React Project | |
| # run: ./gradlew -p examples/vertx-react build |