This commit is contained in:
WALEEDALAREQI 2025-12-01 14:43:41 +00:00 committed by GitHub
commit ef5d97d9a1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

31
.github/سير العمل/build.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: Build Action
WALEED AL AREQI
on:
push:
branches:
- main
- releases/*
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Setup Node.JS 16
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm
- run: npm ci
- run: npm run build
- run: npm run format-check
- run: npm test