Skip to content

Add more information about contributions to the README #25

Add more information about contributions to the README

Add more information about contributions to the README #25

Workflow file for this run

name: Validate React app
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
validate:
runs-on: ubuntu-latest
defaults:
run:
working-directory: 'app'
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Check code syntax
run: npm run check
- name: Check build succeeds
run: npm run build --if-present