Update 11-subscribe.js #131
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 to GitHub Pages | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout ποΈ | |
uses: actions/[email protected] | |
- name: Install and build π§ | |
run: | | |
npm install | |
npm run build | |
- name: Deploy π | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: dist |