Skip to content

Commit

Permalink
feat: support --aot flag for jco componentize (#498)
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford authored Sep 6, 2024
1 parent 33e6192 commit 881aca0
Show file tree
Hide file tree
Showing 8 changed files with 2,144 additions and 849 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install wasm32-wasip1 target
run: rustup target add wasm32-wasip1
- name: Install NPM packages
run: npm install
run: npm ci
- name: Build
run: npm run build
- name: Upload Jco Build
Expand Down Expand Up @@ -61,8 +61,10 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Setup pnpm
run: npm install -g pnpm
- name: Install NPM packages
run: npm install
run: pnpm install
- name: Download Build
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -124,7 +126,7 @@ jobs:
with:
deno-version: v1.x
- name: Install NPM packages
run: npm install
run: npm ci
- name: Download Build
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -165,7 +167,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Install NPM packages
run: npm install
run: npm ci
- name: Download Build
uses: actions/download-artifact@v4
with:
Expand All @@ -185,7 +187,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install NPM packages
run: npm install
run: npm ci
- name: Test Workspaces
run: npm run test --workspaces

Expand All @@ -195,7 +197,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install NPM packages
run: npm install
run: npm ci
- name: Lint
run: npm run lint

Expand Down
Loading

0 comments on commit 881aca0

Please sign in to comment.