html_int/button: use svg_element
instead of states
to check for b…
#94
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 docs to Github Pages | |
on: | |
push: | |
branches: 'main' | |
jobs: | |
build_docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: npm | |
- name: Install dependencies | |
run: npm install | |
- name: Test to see if the project compiles | |
run: npm run build | |
- name: Run unit test | |
run: npm run test | |
- name: Create the docs directory locally in CI | |
run: npm run docs | |
- name: Upload Artifacts | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: 'docs/' | |
deploy: | |
needs: build_docs | |
runs-on: ubuntu-latest | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Deploy | |
id: deployment | |
uses: actions/deploy-pages@v1 |