Skip to content

build(deps-dev): bump @types/tar from 6.1.4 to 6.1.5 (#1085) #177

build(deps-dev): bump @types/tar from 6.1.4 to 6.1.5 (#1085)

build(deps-dev): bump @types/tar from 6.1.4 to 6.1.5 (#1085) #177

Workflow file for this run

name: Build and Deploy Docs
on:
push:
branches:
- master
jobs:
build-and-deploy-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '14.x'
# Pre-check to validate that versions match between package.json
# and package-lock.json. Needs to run before npm install
- name: Validate package.json and package-lock.json versions
run: node version-check.js
- name: Install dependencies
run: npm ci
- name: Build docs
run: npm run docs
- name: Deploy docs
uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs # The folder the action should deploy.