Skip to content

fix: test github artifact #5

fix: test github artifact

fix: test github artifact #5

Workflow file for this run

name: Build React
on:
push:
branches: ["**"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Build website
run: pnpm run build
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: build
path: dist