Skip to content

Bump shelljs and gulp-eslint (#356) #193

Bump shelljs and gulp-eslint (#356)

Bump shelljs and gulp-eslint (#356) #193

Workflow file for this run

name: deploy
on:
push:
branches:
- master
schedule:
# Weekly on a Friday at midnight
- cron: "0 0 * * 5"
jobs:
gh-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Read .nvmrc
id: nvmrc
shell: bash
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
- uses: actions/setup-node@v2
with:
node-version: ${{ steps.nvmrc.outputs.NODE_VERSION }}
- run: npm ci
- run: npm run build
env:
CI: true
GA_KEY: ${{ secrets.GA_KEY }}
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.4
with:
branch: gh-pages
folder: dist