From 7e49a89bca6efdb7ba310f70a9276ab0453be5ea Mon Sep 17 00:00:00 2001 From: Shivam Singla <38393640+singla-shivam@users.noreply.github.com> Date: Wed, 29 Jun 2022 20:27:58 +0000 Subject: [PATCH 1/2] ci: fix wrong declaration file path --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7ccd64e..e6606c1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,7 +72,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps - asset_path: ./temp/$declarations.d.ts + asset_path: ./temp/declarations.d.ts asset_name: declarations.d.ts asset_content_type: text/typescript From e7bd1791b7fd3076941c528573b79a28c00d1b55 Mon Sep 17 00:00:00 2001 From: Shivam Singla <38393640+singla-shivam@users.noreply.github.com> Date: Wed, 29 Jun 2022 20:35:03 +0000 Subject: [PATCH 2/2] fix: failing example for flip --- examples/flip.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/flip.ts b/examples/flip.ts index 924cda8..bcce032 100644 --- a/examples/flip.ts +++ b/examples/flip.ts @@ -1,3 +1,6 @@ import * as Fae from 'https://deno.land/x/fae/mod.ts' -console.assert([1, 2] == [1, 2]) +// TODO +console.assert(1 === 1) + +console.log('Example ran successfully')