Skip to content

fixed main.yml

fixed main.yml #22

Workflow file for this run

name: React CI-OHours
on: [push]
jobs:
build:
name: Build and unit test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
- run: npm install
- run: npm run build --if-present
- run: npm test