add Language-Code header to DeviceRequest (#57) #44
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: Validate Examples | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| validate-examples: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| cache: "npm" | |
| cache-dependency-path: tools/package-lock.json | |
| - name: Install tooling | |
| run: bash ./install-tooling.sh | |
| - name: NPM install | |
| run: npm ci --prefix tools | |
| - name: Validate examples | |
| run: bash ./examples/validate.sh |