Skip to content

feat: update the text & some layouts, also the buid was fixed #484

feat: update the text & some layouts, also the buid was fixed

feat: update the text & some layouts, also the buid was fixed #484

Workflow file for this run

name: Build and Test React Application
# Controls when the action will run.
on:
workflow_dispatch:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
NODE_OPTIONS: --openssl-legacy-provider # Temporary fix (remove later!)
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build_test:
# The type of runner that the job will run on
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm ci, build, test and lint
run: |
npm ci
npm run build --if-present
npm test
npm run lint