Skip to content

Commit

Permalink
initial spec text
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelficarra committed Sep 4, 2024
1 parent b70c5e2 commit 8e26226
Show file tree
Hide file tree
Showing 8 changed files with 1,663 additions and 6 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Build
run: >
npm ci &&
npm run build
- name: Test
- name: install deps
run: npm ci
- name: build spec
run: npm run spec
- name: build polyfill
run: npm run build
- name: test polyfill
run: npm test
29 changes: 29 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Deploy gh-pages

on:
push:
branches:
- main
permissions:
contents: write

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: >
npm ci &&
npm run build &&
npm run spec &&
cp -r demo dist &&
cp -r lib dist/demo
- uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: dist
clean: true
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/biblio.json
/tsconfig.tsbuildinfo
/node_modules
/lib
/dist
Empty file added demo/.keep
Empty file.
1 change: 1 addition & 0 deletions iterator-helpers-biblio.json

Large diffs are not rendered by default.

Loading

0 comments on commit 8e26226

Please sign in to comment.