Skip to content

Update Dockerfile + Prebuild Image with GitHub Actions #1

Update Dockerfile + Prebuild Image with GitHub Actions

Update Dockerfile + Prebuild Image with GitHub Actions #1

Workflow file for this run

name: Build project
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build --if-present