-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (34 loc) · 921 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# This is a basic workflow that is manually triggered
name: BUILD
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on: [push,pull_request]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
automake:
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os:
- "ubuntu-latest"
node:
# Run tests on minimal version we support
- "17.6.0"
NPM_CLIENT:
# - "yarn"
- "npm"
# - "pnpm"
env:
INSTALL_PACKAGE: true
NPM_CLIENT: ${{ matrix.NPM_CLIENT }}
name: Test with ${{ matrix.NPM_CLIENT }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-java@v1
with:
java-version: 11
- name: build
run: make