Skip to content

Parse sequences in Rust/wasm #36

Parse sequences in Rust/wasm

Parse sequences in Rust/wasm #36

name: Test and Publish the Demo
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- name: Install and Build 🔧
run: |
npm ci
- name: Test 🧪
run: |
npm run eslint
- name: Build Component 🏗
run: |
npm run build
ls -l dist
- name: Deploy Site 🚀
if: github.ref == 'refs/heads/main'
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: dist # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch