Skip to content

chore: update default to dfx 0.21.0 #581

chore: update default to dfx 0.21.0

chore: update default to dfx 0.21.0 #581

name: motoko-encrypted-notes-vetkd
on:
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
- .ic-commit
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: |
pushd motoko/encrypted-notes-dapp-vetkd
make test-e2e BUILD_ENV=motoko
popd
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: |
pushd motoko/encrypted-notes-dapp-vetkd
make test-e2e BUILD_ENV=motoko
popd