Pierre Tellier 83cbeb7a2e
Some checks failed
CI / build (push) Failing after 11s
feat: single workflow that check prettier, linter and build
2025-02-09 16:07:40 +01:00

24 lines
565 B
YAML

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install everything
working-directory: ./front/MyINPulse-front
run: npm i
- name: Run ESLint
working-directory: ./front/MyINPulse-front
run: npx eslint
- name: Run prettier
working-directory: ./front/MyINPulse-front
run: npx prettier src --check
- name: check build
working-directory: ./front/MyINPulse-front
run: npm run build