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

ci: added ability to publish test packages #6389

Merged
merged 22 commits into from
Jun 7, 2024
Merged
Changes from 1 commit
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
30 changes: 19 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ env:
CARGO_INCREMENTAL: 0

jobs:
check:
name: check
runs-on: ubuntu
steps:
- name: check
run: |
echo "node input: ${{ inputs.node_version }}"
shairez marked this conversation as resolved.
Show resolved Hide resolved

changes:
name: Setup
runs-on: ubuntu-latest
Expand Down Expand Up @@ -107,7 +115,7 @@ jobs:
- name: Setup Node
uses: actions/[email protected]
with:
node-version: ${{ github.event.inputs.node_version }}
node-version: ${{ inputs.node_version }}
cache: 'pnpm'
registry-url: https://registry.npmjs.org/

Expand Down Expand Up @@ -177,7 +185,7 @@ jobs:
if: ${{ needs.changes.outputs.fullbuild == 'true' }}
uses: actions/[email protected]
with:
node-version: ${{ github.event.inputs.node_version }}
node-version: ${{ inputs.node_version }}
cache: 'pnpm'
registry-url: https://registry.npmjs.org/

Expand Down Expand Up @@ -270,7 +278,7 @@ jobs:
if: ${{ needs.changes.outputs.fullbuild == 'true' }}
uses: actions/[email protected]
with:
node-version: ${{ github.event.inputs.node_version }}
node-version: ${{ inputs.node_version }}
cache: 'pnpm'
registry-url: https://registry.npmjs.org/

Expand Down Expand Up @@ -337,7 +345,7 @@ jobs:
if: ${{ needs.changes.outputs.insightsbuild == 'true' }}
uses: actions/[email protected]
with:
node-version: ${{ github.event.inputs.node_version }}
node-version: ${{ inputs.node_version }}
cache: 'pnpm'
registry-url: https://registry.npmjs.org/

Expand Down Expand Up @@ -370,7 +378,7 @@ jobs:
if: ${{ needs.changes.outputs.docsbuild == 'true' }}
uses: actions/[email protected]
with:
node-version: ${{ github.event.inputs.node_version }}
node-version: ${{ inputs.node_version }}
cache: 'pnpm'
registry-url: https://registry.npmjs.org/

Expand Down Expand Up @@ -410,7 +418,7 @@ jobs:
if: ${{ needs.changes.outputs.fullbuild == 'true' }}
uses: actions/[email protected]
with:
node-version: ${{ github.event.inputs.node_version }}
node-version: ${{ inputs.node_version }}
cache: 'pnpm'
registry-url: https://registry.npmjs.org/

Expand Down Expand Up @@ -510,7 +518,7 @@ jobs:
- name: Setup Node
uses: actions/[email protected]
with:
node-version: ${{ github.event.inputs.node_version }}
node-version: ${{ inputs.node_version }}
cache: 'pnpm'
registry-url: https://registry.npmjs.org/

Expand Down Expand Up @@ -576,10 +584,10 @@ jobs:
settings:
- host: ubuntu-latest
browser: chromium
node: ${{ github.event.inputs.node_version }}
node: ${{ inputs.node_version }}
- host: macos-latest
browser: webkit
node: ${{ github.event.inputs.node_version }}
node: ${{ inputs.node_version }}

runs-on: ${{ matrix.settings.host }}

Expand Down Expand Up @@ -654,7 +662,7 @@ jobs:
- name: Setup Node
uses: actions/[email protected]
with:
node-version: ${{ github.event.inputs.node_version }}
node-version: ${{ inputs.node_version }}
cache: 'pnpm'
registry-url: https://registry.npmjs.org/

Expand Down Expand Up @@ -750,7 +758,7 @@ jobs:
- name: Setup Node
uses: actions/[email protected]
with:
node-version: ${{ github.event.inputs.node_version }}
node-version: ${{ inputs.node_version }}
cache: 'pnpm'
registry-url: https://registry.npmjs.org/

Expand Down
Loading