Skip to content

Use async.queue to limit how many files processing at once #55

Use async.queue to limit how many files processing at once

Use async.queue to limit how many files processing at once #55

Workflow file for this run

name: Deploy
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Build the app
run: npm run build
- name: Deploy the app to `gh-pages`
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: build
publish_branch: gh-pages
force_orphan: true