Skip to content

Bump serve-static from 1.14.1 to 1.16.2 #14

Bump serve-static from 1.14.1 to 1.16.2

Bump serve-static from 1.14.1 to 1.16.2 #14

Workflow file for this run

# Reference: https://github.com/marketplace/actions/deploy-to-github-pages
name: Install and Build
on:
pull_request:
jobs:
install-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
with:
persist-credentials: false
- name: Start
run: echo "Verifying Install and Build"
- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: |
npm install
npm run build
- name: End
run: echo "Complete"