From 766dc35ea3799a3ddf5eb2cd4e3803eac9799f79 Mon Sep 17 00:00:00 2001 From: CryptoNightCANADA <49769595+CryptonightCanada@users.noreply.github.com> Date: Sat, 14 Nov 2020 10:10:23 -0500 Subject: [PATCH 1/2] Update README.md Corrected the Latest Releases hyperlink pointing toward the Webchain Releases page --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 131742ab..4e7f5119 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Build Status](https://travis-ci.org/MyCryptoHQ/MyCrypto.svg?branch=develop)](https://travis-ci.org/MyCryptoHQ/MyCrypto) [![Coverage Status](https://coveralls.io/repos/github/MyCryptoHQ/MyCrypto/badge.svg?branch=develop)](https://coveralls.io/github/MyCryptoHQ/MyCrypto?branch=develop) -* **Just looking to download?** Grab our [latest release](https://https://github.com/webchain-network/new-wallet/releases). +* **Just looking to download?** Grab our [latest release](https://github.com/webchain-network/new-wallet/releases). ## Development / Build Requirements From 43f5773d570e8228231158405791fa796853cd61 Mon Sep 17 00:00:00 2001 From: CryptoNight CANADA <49769595+CryptonightCanada@users.noreply.github.com> Date: Sun, 28 Feb 2021 19:13:27 -0500 Subject: [PATCH 2/2] Create deno.yml --- .github/workflows/deno.yml | 39 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/deno.yml diff --git a/.github/workflows/deno.yml b/.github/workflows/deno.yml new file mode 100644 index 00000000..90fc5161 --- /dev/null +++ b/.github/workflows/deno.yml @@ -0,0 +1,39 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# This workflow will install Deno and run tests across stable and nightly builds on Windows, Ubuntu and macOS. +# For more information see: https://github.com/denolib/setup-deno + +name: Deno + +on: + push: + branches: [mintme-integration] + pull_request: + branches: [mintme-integration] + +jobs: + test: + runs-on: ${{ matrix.os }} # runs a test on Ubuntu, Windows and macOS + + strategy: + matrix: + deno: ["v1.x", "nightly"] + os: [macOS-latest, windows-latest, ubuntu-latest] + + steps: + - name: Setup repo + uses: actions/checkout@v2 + + - name: Setup Deno + uses: denolib/setup-deno@c7d7968ad4a59c159a777f79adddad6872ee8d96 + with: + deno-version: ${{ matrix.deno }} # tests across multiple Deno versions + + - name: Cache Dependencies + run: deno cache deps.ts + + - name: Run Tests + run: deno test -A --unstable