Skip to content

updated tlock and added options for quicknet/fastnet #167

updated tlock and added options for quicknet/fastnet

updated tlock and added options for quicknet/fastnet #167

Workflow file for this run

name: build
on:
pull_request:
push:
branches: [master]
tags:
- .*
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install nodejs 🔧
uses: actions/setup-node@v3
with:
node-version: latest
- name: Build and test app 🔧
run: |
npm ci
npm run build:ci
deploy_to_github_pages:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install and Build 🔧
run: |
npm ci
npm run build:githubpages
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist