fix: promise resolver when request is blocked (#226) #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docs Build Deploy Workflow | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build_test_and_publish: | |
name: Build and Test the Application | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js using 14.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 14.x | |
- name: Configure Git | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "gh-pages deploy bot" | |
- name: Install Packages | |
run: npm install | |
- name: Deploy to gh-pages | |
run: npm run gh-pages |