Skip to content

Implemented Fun Facts Page #3

Implemented Fun Facts Page

Implemented Fun Facts Page #3

Workflow file for this run

# This workflow will attempt to install, build, and start the project for every
# pull request to the main branch.
name: Pull request workflow
on:
pull_request:
branches: ["main"]
jobs:
pull_request_build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install frontend dependencies
run: npm install
- name: Build frontend
run: npm run build