[Do not merge] crypto-next tests #68
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build @bitwarden/sdk-internal | |
on: | |
pull_request: | |
push: | |
branches: | |
- "main" | |
- "rc" | |
- "hotfix-rc" | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
working-directory: crates/bitwarden-wasm-internal | |
jobs: | |
build: | |
name: Building @bitwarden/sdk-wasm-internal | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
- name: Set version (PR) | |
if: ${{ github.event_name == 'pull_request' }} | |
run: | | |
echo REF_NAME="${{ github.event.pull_request.head.ref }}" >> $GITHUB_ENV | |
echo SHA="${{ github.event.pull_request.head.sha }}" >> $GITHUB_ENV | |
- name: Set env variables (Branch/Tag) | |
if: ${{ github.event_name == 'push' }} | |
run: | | |
echo REF_NAME="${GITHUB_REF_NAME}" >> $GITHUB_ENV | |
echo SHA="${GITHUB_SHA}" >> $GITHUB_ENV | |
- name: Set version | |
run: | | |
echo SDK_VERSION="${REF_NAME} (${SHA:0:7})" >> $GITHUB_ENV | |
echo "SDK_VERSION=${SDK_VERSION}" | |
- name: Setup Node | |
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 | |
with: | |
node-version: 20 | |
registry-url: "https://npm.pkg.github.com" | |
cache: "npm" | |
- name: Install dependencies | |
run: npm i -g binaryen | |
- name: Install rust | |
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a # stable | |
with: | |
toolchain: 1.81.0 | |
targets: wasm32-unknown-unknown | |
- name: Cache cargo registry | |
uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5 | |
with: | |
key: wasm-cargo-cache | |
- name: Install wasm-bindgen-cli | |
run: cargo install wasm-bindgen-cli --version 0.2.95 | |
- name: Build | |
run: ./build.sh -r | |
- name: Upload artifact | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: sdk-internal | |
path: ${{ github.workspace }}/languages/js/sdk-internal/* | |
if-no-files-found: error |