Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support --aot flag for jco componentize #498

Merged
merged 11 commits into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading