Revert "Fix the spelling mistake in 100sentence.js" #116
Workflow file for this run
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: Build and Deploy | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test-build-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: lts/Hydrogen | |
- name: Install Dependencies | |
run: npm -g install pnpm@8.6.10 && pnpm i | |
# - name: Run Tests | |
# run: yarn test | |
- name: Run Build | |
run: pnpm run build | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@v4.2.5 | |
with: | |
branch: gh-pages | |
folder: dist |