Skip to content

πŸ”– From test β†’ Bump version: v1.0.8-test into prod (#30) #69

πŸ”– From test β†’ Bump version: v1.0.8-test into prod (#30)

πŸ”– From test β†’ Bump version: v1.0.8-test into prod (#30) #69

Workflow file for this run

---
# .github/workflows/node.yml
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["22.x"]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install frontend dependencies
run: |
npm install
npm ci
working-directory: frontend
- name: Format frontend project
run: npm run format
working-directory: frontend
- name: Lint frontend project
run: npm run lint
working-directory: frontend
- name: Build Frontend project
run: npm run build --if-present
working-directory: frontend