Skip to content

improve performance by using lookup tables #40

improve performance by using lookup tables

improve performance by using lookup tables #40

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [lts*]
steps:
- uses: actions/checkout@v2
- uses: dcodeIO/setup-node-nvm@master
with:
node-version: lts/*
- run: npm ci
- run: npm test
- run: npm run demo
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: demo
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}