Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
antonmedv authored Feb 25, 2024
2 parents 4868d7c + 0c97b9f commit 26f7fe7
Show file tree
Hide file tree
Showing 35 changed files with 3,914 additions and 2,799 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: antonmedv
1 change: 1 addition & 0 deletions .github/pages/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Here be dragons
4 changes: 1 addition & 3 deletions .github/workflows/dev-publish.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
name: Dev Publish

on:
push:
branches:
- dev
workflow_dispatch:

jobs:
publish:
Expand Down
40 changes: 40 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Deploy docs

on:
push:
branches: ['gh-pages']
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: 'pages'
cancel-in-progress: false

jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: gh-pages
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Install deps
run: npm ci
- name: Built docs
run: npm run docs:built
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: 'docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x]
node-version: [16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v3
Expand All @@ -33,7 +33,7 @@ jobs:
node-version: 16.x
- run: npm i
- run: npm run build
- run: npx uvu test win32
- run: node ./test/win32.test.js
timeout-minutes: 1
env:
FORCE_COLOR: 3
Loading

0 comments on commit 26f7fe7

Please sign in to comment.