Skip to content

Merge pull request #16 from hsimpson/dependabot/npm_and_yarn/minimatc… #43

Merge pull request #16 from hsimpson/dependabot/npm_and_yarn/minimatc…

Merge pull request #16 from hsimpson/dependabot/npm_and_yarn/minimatc… #43

Workflow file for this run

name: Build Web
on:
push:
branches:
- master
jobs:
build:
name: Web Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install node_modules
run: yarn install
- name: Build Prod
run: yarn run build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.1.7
with:
branch: gh-pages
folder: dist