mirror of
https://github.com/actions/setup-java.git
synced 2026-03-26 13:56:49 +00:00
Merge 5ca4441199 into fe779bf55e
This commit is contained in:
commit
94ef640ec0
31
.github/سير العمل/build.yml
vendored
Normal file
31
.github/سير العمل/build.yml
vendored
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
name: Build Action
|
||||||
|
[](https://github.com/actions/setup-java/actions/workflows/build.yml)
|
||||||
|
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
|
||||||
Loading…
Reference in New Issue
Block a user