Skip to content

1.8.14

1.8.14 #185

name: 🚀 Build and release
on:
release:
types: [created]
jobs:
build-artifacts:
uses: ./.github/workflows/build.yml
permissions:
contents: read
run-unit-tests:
needs: build-artifacts
uses: ./.github/workflows/unit-test.yml
permissions:
contents: read
id-token: write
run-end-to-end-tests:
needs: build-artifacts
uses: ./.github/workflows/end-to-end-tests.yml
permissions:
contents: read
run-benchmarks:
needs: build-artifacts
uses: ./.github/workflows/benchmark.yml
permissions:
contents: read
build:
needs:
- run-unit-tests
- run-end-to-end-tests
- run-benchmarks
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: "24.x"
registry-url: "https://registry.npmjs.org"
scope: "@aikidosec"
- name: Set up Rust
run: |
rustup toolchain install stable
rustup default stable
cargo install wasm-pack
- name: Setup Aikido safe-chain
run: |
npm i -g @aikidosec/safe-chain
safe-chain setup-ci
- name: Downgrade npm
# https://github.com/npm/cli/issues/8669
run: npm i -g npm@11.6.0
- name: Install dependencies
run: npm run install-lib-only
- name: Get the version
id: get_version
run: echo "tag=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
- name: Set the version
run: cd library && npm --no-git-tag-version version ${{ steps.get_version.outputs.tag }}
- name: Build the library
run: npm run build
- name: Linting
run: npm run lint
- name: Publish to NPM
run: |
if [ "${{ github.event.release.prerelease }}" = "true" ]; then
echo "Publishing beta version ${{ steps.get_version.outputs.tag }} to NPM"
cd build && npm publish --provenance --access public --tag beta
else
echo "Publishing version ${{ steps.get_version.outputs.tag }} to NPM"
cd build && npm publish --provenance --access public
fi