Upgrade JSAPI to 4.29.10 #16
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: Deploy Pages | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@main | |
- name: node 19.x | |
uses: actions/setup-node@main | |
with: | |
node-version: 19.6 | |
cache: 'npm' | |
- name: install deps | |
run: npm ci --legacy-peer-deps | |
- name: build components | |
run: npm run build | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # The branch the action should deploy to. | |
folder: www # The folder the action should deploy. |