Skip to content

Correct 'npm install' Script #2

Correct 'npm install' Script

Correct 'npm install' Script #2

Workflow file for this run

name: NASA Project CI
on:
push:
branches:
- main
# branch created for the CI/CD module
- 05-Continuous-Integration-and-Delivery
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js version 16
uses: actions/setup-node@v2
with:
node-version: 16
- run: npm install
- run: npm run build --prefix client