npm install

This commit is contained in:
David Edmondson
2021-09-06 13:20:07 -07:00
parent 8faa7faf8a
commit 6d8b52c0d6
2 changed files with 32 additions and 14 deletions

View File

@@ -6,9 +6,9 @@ name: CI
on:
# Triggers the workflow on push or pull request events but only for the dev branch
push:
branches: [ dev ]
branches: [dev]
pull_request:
branches: [ dev ]
branches: [dev]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
@@ -25,6 +25,9 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build