Skip to content

Commit d0311ef

Browse files
Rebuild; fix github actions; lint fix
1 parent f1ba1bb commit d0311ef

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/checks.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ on:
1212

1313
jobs:
1414
run-tests:
15-
runs-on: ubuntu-latest
15+
# Ubuntu 22.04 easiest way to get puppeteer working
16+
# https://github.com/puppeteer/puppeteer/issues/12818
17+
runs-on: ubuntu-22.04
1618
steps:
1719
- uses: actions/checkout@v4
1820
- uses: actions/setup-node@v4

bibtex-tidy.js

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ui/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import "core-js/modules/es.array.flat-map";
22
import "core-js/modules/es.object.from-entries";
33
import "core-js/modules/es.string.trim-end";
4-
import App from "./App.svelte";
54
import { mount } from "svelte";
5+
import App from "./App.svelte";
66

77
mount(App, { target: document.body });

0 commit comments

Comments
 (0)