Skip to content

Commit 5461369

Browse files
Move Lit examples into their own lit/ directory (#142)
* Move Lit examples into their own lit/ directory * Fix package lock file for web/ * Fix tests from rebase * Simplify import structure (reviewer feedback) * Move restaurants lit demo into samples/ * Move contact lit demo into the samples/ dir * Move editor to be top-level * Update workflow name for editor
1 parent b55ebe5 commit 5461369

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+9770
-395
lines changed

.github/workflows/editor_build.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Editor build
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Set up Node.js
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: '20'
19+
20+
- name: Install lib's deps
21+
working-directory: ./web/lib
22+
run: npm ci
23+
24+
- name: Build lib
25+
working-directory: ./web/lib
26+
run: npm run build
27+
28+
- name: Install editor deps
29+
working-directory: ./editor
30+
run: npm install
31+
32+
- name: Build editor
33+
working-directory: ./editor
34+
run: npm run build
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)