make rust parser resource-compat #11084
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: check frontend build | |
on: | |
workflow_run: | |
workflows: ["Change versions"] | |
types: | |
- completed | |
merge_group: | |
push: | |
paths: | |
- "frontend/**" | |
- ".github/workflows/frontend-check.yml" | |
jobs: | |
npm_check: | |
runs-on: ubicloud-standard-8 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: "npm check" | |
timeout-minutes: 5 | |
run: | |
cd frontend && npm ci && npm run generate-backend-client && npm run | |
check |