mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 08:01:25 +00:00
22 lines
481 B
YAML
22 lines
481 B
YAML
name: check frontend build
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, closed]
|
|
paths:
|
|
- "frontend/**"
|
|
merge_group:
|
|
|
|
jobs:
|
|
npm_check:
|
|
runs-on: ubicloud-standard-8
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
- name: "npm check"
|
|
timeout-minutes: 2
|
|
run:
|
|
cd frontend && npm ci && npm run generate-backend-client && npm run
|
|
check
|