-
-
Notifications
You must be signed in to change notification settings - Fork 2
118 lines (99 loc) · 3.22 KB
/
ci.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
name: CI
on:
pull_request:
branches:
- main
- releases/*
paths-ignore:
- '**.md'
push:
branches:
- main
- releases/*
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup nodejs 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
run: npm ci
- name: Check code format
run: npm run format:check
- name: Build
run: npm run build
test:
strategy:
fail-fast: false
matrix:
runs-on: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.runs-on }}
needs: build
steps:
- uses: actions/checkout@v4
- name: Setup nodejs 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
run: npm ci
- name: Test
run: npm run test
test-run:
strategy:
fail-fast: false
matrix:
runs-on: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.runs-on }}
needs: build
steps:
- uses: actions/checkout@v4
- name: Update telemetry application (linux)
if: runner.os == 'Linux'
run: |
sed -i "s/const application\s*=\s*'replacetokens-action'/const application = 'replacetokens-action-dev'/" $GITHUB_WORKSPACE/dist/index.js
- name: Update telemetry application (macos)
if: runner.os == 'macOS'
run: |
sed -i '' -e "s/const application[[:space:]]*=[[:space:]]*'replacetokens-action'/const application = 'replacetokens-action-dev'/" $GITHUB_WORKSPACE/dist/index.js
- name: Update telemetry application (windows)
if: runner.os == 'Windows'
run: |
$p = "$env:GITHUB_WORKSPACE\dist\index.js"
(get-content $p -raw) -replace "const application\s*=\s*'replacetokens-action'", "const application = 'replacetokens-action-dev'" | set-content $p
- name: Run local action
uses: ./
id: replace-tokens
with:
sources: |
**/*.json;!**/*.dev.json;!**/vars.json => _tmp/*.json
**/*.xml;!**.dev.xml => _tmp/*.xml
**/*.yml => _tmp/*.yml
variables: >
[
${{ toJSON(vars) }},
${{ toJSON(secrets) }},
{ "var2": "#{INLINE}#value2", "inline": "inline_" },
${{ toJSON(format('@{0}/tests/data/vars.jsonc', github.workspace)) }},
"@**/*.(json|yml);!**/settings*",
"$ENV_VARS"
]
root: ${{ github.workspace }}/tests
log-level: debug
recursive: true
transforms: true
env:
ENV_VARS: '{ "var4": "env_value4" }'
- name: Check action outputs
run: |
echo "defaults : ${{ steps.replace-tokens.outputs.defaults }}"
echo "files : ${{ steps.replace-tokens.outputs.files }}"
echo "replaced : ${{ steps.replace-tokens.outputs.replaced }}"
echo "tokens : ${{ steps.replace-tokens.outputs.tokens }}"
echo "transforms: ${{ steps.replace-tokens.outputs.transforms }}"