This repository has been archived by the owner on Aug 16, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (65 loc) · 1.89 KB
/
test-run.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
name: test-run
on:
push:
branches:
- "**"
tags-ignore:
- "**"
workflow_dispatch:
jobs:
test-run:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v2
- run: npm run release
- name: before icu
id: before
uses: ./.github/actions/icu-test
- name: run setup-icu
uses: ./
id: setup-icu
- name: after icu
id: after
uses: ./.github/actions/icu-test
- uses: sarisia/actions-status-discord@v1
if: always()
with:
webhook: ${{ secrets.DISCORD_WEBHOOK }}
title: test-run - ${{ matrix.os }}
description: |
icu-data-dir: `${{ steps.setup-icu.outputs.icu-data-dir }}`
before en: ${{ steps.before.outputs.en }}
before ja: ${{ steps.before.outputs.ja }}
after en: ${{ steps.after.outputs.en }}
after ja: ${{ steps.after.outputs.ja }}
test-run-noexport:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm run release
- name: before icu
id: before
uses: ./.github/actions/icu-test
- name: run setup-icu
uses: ./
id: setup-icu
with:
noexport: true
- name: after icu
id: after
uses: ./.github/actions/icu-test
- uses: sarisia/actions-status-discord@v1
if: always()
with:
webhook: ${{ secrets.DISCORD_WEBHOOK }}
title: test-run-noexport
description: |
icu-data-dir: `${{ steps.setup-icu.outputs.icu-data-dir }}`
before en: ${{ steps.before.outputs.en }}
before ja: ${{ steps.before.outputs.ja }}
after en: ${{ steps.after.outputs.en }}
after ja: ${{ steps.after.outputs.ja }}