Regenerate schemas #12
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 WASM Functions | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| paths: | |
| - "functions-*-wasm/**" | |
| - "package.json" | |
| - ".github/workflows/validate-wasm-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 TypeScript functions | |
| run: CI=1 yarn expand-liquid wasm |