Skip to content

Update Node.js to v18.20.5 #855

Update Node.js to v18.20.5

Update Node.js to v18.20.5 #855

Workflow file for this run

name: 'Build'
on:
pull_request:
workflow_call:
push:
branches: ['main']
jobs:
build:
name: 'Build'
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v3
- name: 'Install Dependencies'
uses: ./.github/actions/install-dependencies
- name: 'Setup Build Cache'
id: cache-build
uses: actions/cache@v3
with:
path: dist
key: ${{ github.sha }}-dist
- name: 'Run Build'
if: steps.cache-build.outputs.cache-hit != 'true'
run: pnpm build
- name: 'Upload Artifact'
if: always()
uses: actions/upload-artifact@v3
with:
name: ${{ github.sha }}-dist
path: dist