Skip to content

chore(): bump year

chore(): bump year #42

Workflow file for this run

name: Node CI/CD
on:
push:
branches: [ main ]
defaults:
run:
working-directory: ./frontend
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
cache-dependency-path: ./frontend/pnpm-lock.yaml
- name: Install and Build
run: |
pnpm install
pnpm build:prod
# - name: Deploy
# uses: SamKirkland/[email protected]
# with:
# ftp-server: ${{ secrets.FTP_SERVER }}
# ftp-username: ${{ secrets.FTP_USERNAME }}
# ftp-password: ${{ secrets.FTP_PASSWORD }}
# git-ftp-args: --insecure
# uses: pressidium/lftp-mirror-action@v1
# with:
# host: ${{ secrets.FTP_SERVER }}
# user: ${{ secrets.FTP_USERNAME }}
# pass: ${{ secrets.FTP_PASSWORD }}
# localDir: 'frontend/dist/browser'