-
Notifications
You must be signed in to change notification settings - Fork 1
100 lines (84 loc) · 2.64 KB
/
build-test-release.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: Build, Test and Release
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allow manual trigger
workflow_dispatch:
jobs:
detect-changes:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v3
- name: Get changed directories
id: set-matrix
run: |
DIRS=$(ls -d */ | grep -v 'node_modules\|.git\|.github' | sed 's/\///g' | jq -R -s -c 'split("\n")[:-1]')
echo "matrix=${DIRS}" >> $GITHUB_OUTPUT
build-and-test:
needs: detect-changes
runs-on: ubuntu-latest
strategy:
matrix:
action: ${{fromJson(needs.detect-changes.outputs.matrix)}}
fail-fast: false # Continue with other actions even if one fails
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
- name: Install root dependencies
run: npm ci
- name: Install action dependencies
working-directory: ${{ matrix.action }}
run: npm ci
- name: Build
working-directory: ${{ matrix.action }}
run: npm run build
- name: Test
working-directory: ${{ matrix.action }}
run: |
if [ -f "package.json" ] && grep -q "\"test\"" "package.json"; then
npm test
fi
release:
needs: build-and-test
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Get version
id: get_version
run: |
VERSION=$(node -p "require('./package.json').version")
echo "version=${VERSION}" >> $GITHUB_OUTPUT
- name: Create Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ steps.get_version.outputs.version }}
release_name: Release v${{ steps.get_version.outputs.version }}
body: |
Release of version ${{ steps.get_version.outputs.version }}
This release includes all actions in the repository:
- run-discovery
- run-scan
- stop-discovery
- stop-scan
- wait-for
draft: false
prerelease: false