chore: add new workflow to download latest ic and test examples #434
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: motoko-encrypted-notes-vetkd | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths: | |
- motoko/encrypted-notes-dapp-vetkd/** | |
- .github/workflows/provision-darwin.sh | |
- .github/workflows/provision-linux.sh | |
- .github/workflows/motoko-encrypted-notes-vetkd-example.yml | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
motoko-encrypted-notes-darwin: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Provision Darwin | |
env: | |
NODE_VERSION: 14.21.3 | |
run: bash .github/workflows/provision-darwin.sh | |
- name: Motoko Encrypted Notes Darwin (unit tests) | |
run: | | |
pushd motoko/encrypted-notes-dapp-vetkd | |
make test-unit BUILD_ENV=motoko MATCHERS="$(dfx cache show)/motoko-matchers/src" | |
popd | |
- name: Motoko Encrypted Notes Darwin (e2e) | |
run: | | |
.github/workflows/motoko-encrypted-notes-vetkd-example.test.sh | |
motoko-encrypted-notes-linux: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Provision Linux | |
run: bash .github/workflows/provision-linux.sh | |
- name: Motoko Encrypted Notes Linux (unit tests) | |
run: | | |
pushd motoko/encrypted-notes-dapp-vetkd | |
make test-unit BUILD_ENV=motoko MATCHERS="$(dfx cache show)/motoko-matchers/src" | |
popd | |
- name: Motoko Encrypted Notes Linux (e2e) | |
run: | | |
.github/workflows/motoko-encrypted-notes-vetkd-example.test.sh |