Skip to content

Merge pull request #33 from MPSxDev/feat/components #1

Merge pull request #33 from MPSxDev/feat/components

Merge pull request #33 from MPSxDev/feat/components #1

Workflow file for this run

name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
working-directory: ./paystell-frontend
run: npm ci
- name: Run linting
working-directory: ./paystell-frontend
run: npm run lint
- name: Type checking
working-directory: ./paystell-frontend
run: npx tsc --noEmit
- name: Build project
working-directory: ./paystell-frontend
run: npm run build