Skip to content

Merge branch 'johncms:develop' into develop #15

Merge branch 'johncms:develop' into develop

Merge branch 'johncms:develop' into develop #15

Workflow file for this run

name: Node CI
on:
push:
paths:
- '**.js'
- '**.css'
- '**.scss'
- '**.json'
- '**.vue'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2-beta
with:
node-version: ${{ matrix.node-version }}
- name: npm install, prod
run: |
npm install
npm run build
env:
CI: true