-
Notifications
You must be signed in to change notification settings - Fork 1
65 lines (53 loc) · 1.4 KB
/
binary-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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Binary build
# Push tests pushes
on: [ push ]
defaults:
run:
shell: bash
jobs:
# Test the build
build:
# Setup
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [ 18.x ]
os: [ windows-latest, ubuntu-latest, macOS-latest, self-hosted ]
# Go
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Env
run: |
echo "Event name: ${{ github.event_name }}"
echo "Git ref: ${{ github.ref }}"
echo "GH actor: ${{ github.actor }}"
echo "SHA: ${{ github.sha }}"
VER=`node --version`; echo "Node ver: $VER"
VER=`npm --version`; echo "npm ver: $VER"
- name: Install Globals
run: npm install -g @enhance/arc-plugin-enhance
- name: Install
run: npm install
- name: Build
run: npm run build
env:
BUILD_ALL: false
- name: Test
run: npm run test:integration
env:
BINARY_ONLY: true
CI: true
- name: Notify
uses: homoluctus/slatify@master
if: github.ref == 'refs/heads/main' && failure()
with:
type: ${{ job.status }}
job_name: '*Test*'
url: ${{ secrets.SLACK_WEBHOOK }}
commit: true
token: ${{ secrets.GITHUB_TOKEN }}