Skip to content

config again

config again #34

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install Node.js dependencies
run: npm ci
- name: Build Project
run: npm run build # Ensure this outputs to the `dist` directory
- name: Upload Build Artifact
uses: actions/upload-artifact@v3
with:
name: build-artifact
path: dist