Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cada8ac

Browse files
committed
Initial commit of htmlrewriter based on lol-html 2
0 parents  commit cada8ac

35 files changed

+5743
-0
lines changed

.github/workflows/test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Test
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v4
11+
12+
- name: Setup Deno
13+
uses: denoland/setup-deno@v1
14+
with:
15+
deno-version: v1.44.4
16+
17+
- name: Check formatting
18+
run: deno fmt src/ --ignore=src/vendor --check
19+
20+
- name: Test Deno
21+
run: deno test --allow-all

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
target
2+
node_modules

0 commit comments

Comments
 (0)