intensify secondary color in platform theme #2453
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
# The branches below should be a subset of the branches above | |
branches: ['main'] | |
workflow_dispatch: | |
inputs: | |
debug_enabled: | |
type: boolean | |
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' | |
required: false | |
default: false | |
jobs: | |
test: | |
name: Build on ${{ matrix.os }}, .Net ${{ matrix.dotnet_version }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest, macos-latest, ubuntu-latest] | |
dotnet_version: [8.0.x] | |
steps: | |
- name: Install MacPorts | |
if: ${{ matrix.os == 'macos-latest' }} | |
uses: melusina-org/setup-macports@v1 | |
- name: Install loader tools on macOS | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: | | |
sudo port -v install ld64 | |
- name: Install icu4c on macOS | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: | | |
sudo port -v install icu @74.2_0 +universal | |
- name: Fixup loader paths for icu4c | |
if: ${{ matrix.os == 'macos-latest' }} | |
# LIB_DEPENDENCIES are of the form "<ICU lib short name> <dependency as ICU lib short name>" | |
# For example, libicuuc (shortened to "uc") depends on libicudata (shortened to "data") | |
# Dependencies can be seen by running "dyld_info -dependents /path/to/something.dylib" | |
run: | | |
ICU_VERSION=74 | |
LIB_DEPENDENCIES=" | |
i18n data | |
i18n uc | |
io data | |
io i18n | |
io uc | |
uc data | |
" | |
LIB_DEPENDENCIES=$(echo "$LIB_DEPENDENCIES" | sed '/^$/d') | |
while IFS= read -r line; do | |
set -- $line | |
sudo install_name_tool -change "/opt/local/lib/libicu$2.$ICU_VERSION.dylib" "@loader_path/libicu$2.$ICU_VERSION.dylib" "/opt/local/lib/libicu$1.$ICU_VERSION.dylib" | |
done <<< "$LIB_DEPENDENCIES" | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Install .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ matrix.dotnet_version }} | |
- name: Read package.json | |
id: package_json | |
uses: zoexx/[email protected] | |
with: | |
file_path: 'package.json' | |
- name: Install Node.js and NPM | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ fromJson(steps.package_json.outputs.volta).node }} | |
cache: npm | |
- name: Install packages | |
run: npm ci | |
- name: type checking | |
run: npm run typecheck | |
- name: Build | |
run: npm run build | |
- name: Verify no files changed after build | |
id: verify-changed-files | |
uses: tj-actions/verify-changed-files@v20 | |
- name: Report file changes | |
if: steps.verify-changed-files.outputs.files_changed == 'true' | |
env: | |
CHANGED_FILES: ${{ steps.verify-changed-files.outputs.changed_files }} | |
run: | | |
echo "Error - changed files after build: $CHANGED_FILES" | |
exit 1 | |
- name: dotnet unit tests | |
run: dotnet test c-sharp-tests/c-sharp-tests.csproj | |
- name: npm unit tests | |
run: npm test | |
- name: check dotnet formatting | |
run: | | |
cd c-sharp | |
dotnet tool restore | |
dotnet csharpier --check . | |
- name: check JS/TS formatting | |
run: npm run format:check | |
- name: check JS/TS linting | |
run: npm run lint | |
- name: check packaging | |
env: | |
# no hardlinks so dependencies are copied | |
USE_HARD_LINKS: false | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: npm run package | |
# Enable tmate debugging of manually-triggered workflows if the input option was provided | |
- name: Setup tmate session | |
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} | |
uses: mxschmitt/action-tmate@v3 | |
with: | |
limit-access-to-actor: true |