mirror of
https://github.com/clearml/clearml-web
synced 2025-01-31 06:26:57 +00:00
33 lines
542 B
YAML
33 lines
542 B
YAML
|
name: Build Check
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout code
|
||
|
uses: actions/checkout@v4
|
||
|
|
||
|
- name: Set up Node.js
|
||
|
uses: actions/setup-node@v4
|
||
|
with:
|
||
|
node-version: '18'
|
||
|
cache: 'npm'
|
||
|
|
||
|
- name: Install dependencies
|
||
|
run: npm ci
|
||
|
|
||
|
- name: Run build
|
||
|
run: npm run build
|
||
|
|
||
|
- name: Check for production build
|
||
|
run: test -f build/index.html
|