Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
run: ./test.sh all
2 changes: 1 addition & 1 deletion lib/shim.js
Original file line number Diff line number Diff line change
@@ -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';

Expand Down
2 changes: 1 addition & 1 deletion test/worker.test.js
Original file line number Diff line number Diff line change
@@ -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';
Expand Down