Skip to content

Update Assorted Scans icon #41

Update Assorted Scans icon

Update Assorted Scans icon #41

Workflow file for this run

name: Bundle and Publish Sources
on:
push:
branches: [master]
jobs:
build:
name: Bundle and Publish Sources
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 14.x
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Lint project
run: yarn lint
continue-on-error: true
- name: Generate bundle
run: yarn bundle
- name: Generate docs
run: yarn docs
continue-on-error: true
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: bundles
single-commit: true