diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d2f1395..d7d119b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,10 +11,10 @@ jobs: - name: Use Deno uses: denoland/setup-deno@v1 with: - deno-version: v1.13.2 + deno-version: v1.x - name: Bundle run: deno bundle lib/mod.js lib/mod.bundle.js - name: Install Puppeteer - run: PUPPETEER_PRODUCT=chrome deno run -A --unstable https://deno.land/x/puppeteer@9.0.1/install.ts + run: PUPPETEER_PRODUCT=chrome deno run -A --unstable https://deno.land/x/puppeteer@9.0.2/install.ts - name: Run the tests - run: ./test.sh all \ No newline at end of file + run: ./test.sh all diff --git a/lib/shim.js b/lib/shim.js index 70384be..8022b18 100644 --- a/lib/shim.js +++ b/lib/shim.js @@ -1,4 +1,4 @@ -import { unshim, domShimSymbol } from 'https://cdn.spooky.click/dom-shim/1.3.0/mod.js?global&props=customElements,document,window,Document,Element,HTMLElement,HTMLTemplateElement,Node,requestAnimationFrame,Text'; +import { unshim, domShimSymbol } from 'https://cdn.spooky.click/dom-shim/1.3.2/mod.js?global&props=customElements,document,window,Document,Element,HTMLElement,HTMLTemplateElement,Node,requestAnimationFrame,Text'; import { isLit, shimLit } from './shim-lit.js'; import { isStencil, shimStencil } from './shim-stencil.js'; diff --git a/test/worker.test.js b/test/worker.test.js index afca78e..7834c6b 100644 --- a/test/worker.test.js +++ b/test/worker.test.js @@ -1,4 +1,4 @@ -import puppeteer from 'https://deno.land/x/puppeteer@9.0.1/mod.ts'; +import puppeteer from 'https://deno.land/x/puppeteer@9.0.2/mod.ts'; import { serve } from 'https://deno.land/std@0.103.0/http/server.ts'; import { readAll } from 'https://deno.land/std@0.103.0/io/util.ts'; import { assert, assertEquals } from './deps.js';