Version 3 - Phase 1 #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Webpage Build | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
webpage_test: | |
name: Test Webpage Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: npm | |
cache-dependency-path: webpage/package-lock.json | |
- name: Install dependencies | |
working-directory: ./webpage | |
run: npm ci | |
- name: Build webpage | |
working-directory: ./webpage | |
run: npm run build |