Skip to content

custom 404 page

custom 404 page #274

Workflow file for this run

name: Build Project
on: push
jobs:
Build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [19.x]
steps:
- name: Pull Project
uses: actions/checkout@v3.2.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3.5.1
with:
node-version: ${{ matrix.node-version }}
- name: Install Packages
run: npm i
- name: Build Project
run: npm run build