[Rust] Force "stable" channel to triggers the desired clippy validations #38
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: Validate JS Functions | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| paths: | |
| - "functions-*-js/**" | |
| - "package.json" | |
| - ".github/workflows/validate-js-functions.yml" | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install node dependencies | |
| run: yarn | |
| - name: Expand liquid for JavaScript functions | |
| run: CI=1 yarn expand-liquid vanilla-js | |
| - name: Install workspace dependencies | |
| run: yarn | |
| - name: Generate types | |
| run: yarn js-typegen | |
| - name: Test | |
| run: yarn js-test |