Skip to content

Commit 8e26226

Browse files
initial spec text
1 parent b70c5e2 commit 8e26226

File tree

8 files changed

+1663
-6
lines changed

8 files changed

+1663
-6
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ jobs:
1515
- uses: actions/setup-node@v4
1616
with:
1717
node-version: 20
18-
- name: Build
19-
run: >
20-
npm ci &&
21-
npm run build
22-
- name: Test
18+
- name: install deps
19+
run: npm ci
20+
- name: build spec
21+
run: npm run spec
22+
- name: build polyfill
23+
run: npm run build
24+
- name: test polyfill
2325
run: npm test

.github/workflows/deploy.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Deploy gh-pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
permissions:
8+
contents: write
9+
10+
jobs:
11+
deploy:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-node@v4
17+
with:
18+
node-version: 20
19+
- run: >
20+
npm ci &&
21+
npm run build &&
22+
npm run spec &&
23+
cp -r demo dist &&
24+
cp -r lib dist/demo
25+
- uses: JamesIves/[email protected]
26+
with:
27+
branch: gh-pages
28+
folder: dist
29+
clean: true

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/biblio.json
12
/tsconfig.tsbuildinfo
23
/node_modules
34
/lib
5+
/dist

demo/.keep

Whitespace-only changes.

iterator-helpers-biblio.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)