Skip to content

Hopefully fix images problem #7

Hopefully fix images problem

Hopefully fix images problem #7

Workflow file for this run

name: Deploy
on:
push:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: self-hosted
strategy:
matrix:
node-version: [19.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build project
run: npm run build