Release v0.18.0 #888
This file contains hidden or 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: WASM | |
on: | |
push: | |
branches: | |
- main | |
- master | |
tags: | |
- '*' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
pre_job: | |
# continue-on-error: true # Uncomment once integration is finished | |
runs-on: ubuntu-latest | |
# Map a step output to a job output | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- id: skip_check | |
uses: fkirc/skip-duplicate-actions@v5 | |
with: | |
concurrent_skipping: 'never' | |
paths: '["tools/**"]' | |
test-wasm: | |
needs: pre_job | |
if: needs.pre_job.outputs.should_skip != 'true' | |
name: test-wasm | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
- uses: dtolnay/rust-toolchain@stable | |
- run: cargo install wasm-pack | |
- name: Run wasm specific tests | |
working-directory: tools/garaga_rs | |
run: RUSTFLAGS='--cfg getrandom_backend="wasm_js"' wasm-pack test --node --release --no-default-features | |
build-wasm: | |
needs: pre_job | |
if: needs.pre_job.outputs.should_skip != 'true' | |
name: build-wasm | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build and check for changes in generated code | |
working-directory: tools/npm/garaga_ts | |
run: | | |
docker compose up --build --exit-code-from app | |
git status --porcelain | |
[[ -z $(git status --porcelain ) ]] | |
- name: Upload package file as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: npm-package | |
path: tools/npm/garaga_ts/*.tgz | |
if-no-files-found: error | |
test-integration: | |
needs: [pre_job, build-wasm] | |
if: needs.pre_job.outputs.should_skip != 'true' | |
name: test-integration | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
- name: Install Puppeteer dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y \ | |
libnss3 libxss1 libasound2t64 libatk-bridge2.0-0 libatk1.0-0 \ | |
libcups2 libxcomposite1 libxdamage1 libxrandr2 libgbm1 \ | |
libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libgtk-3-0 | |
- name: Download package file as artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: npm-package | |
path: tools/npm/garaga_ts | |
- name: Build and tests integration test packages | |
working-directory: tools/npm/integration-test-suite | |
run: | | |
cp ../garaga_ts/garaga-*.tgz garaga.tgz | |
npm i | |
npm run build | |
npx puppeteer browsers install | |
npm run test | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
if: "startsWith(github.ref, 'refs/tags/')" # Only run on tag pushes | |
needs: [build-wasm, test-wasm, test-integration] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
profile: minimal | |
components: rustfmt | |
- uses: software-mansion/setup-scarb@v1 | |
with: | |
scarb-version: "2.11.4" | |
- name: Set up Python 3.10.14 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.10.14 | |
- name: Install dependencies | |
run: make setup | |
- name: Verify Contract Declaration | |
run: source venv/bin/activate && python .github/scripts/verify_contracts.py | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Download package file as artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: npm-package | |
- name: Publish to npm | |
run: | | |
npm publish --access=public *.tgz | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_API_TOKEN }} |