Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
ciur committed Jul 4, 2024
1 parent a51492f commit 5c34552
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 24 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/ui-linting.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/ui.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: UI build

on:
workflow_dispatch:

push:
paths:
- 'ui2/**'
- '.github/workflows/ui-linting.yml'

jobs:
ui:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./ui2
steps:
- uses: actions/checkout@v4
- name: Set Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Run install
uses: borales/actions-yarn@v4
with:
cmd: install # will run `yarn install` command
- name: Run tsc
uses: borales/actions-yarn@v4
with:
cmd: build # runs tsc & vite build

0 comments on commit 5c34552

Please sign in to comment.