Initial version based on 2022 report and replacing imgs with charts c… #332
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
# This workflow is a workaround for ci.yml to bypass the github checks | |
# | |
# Ref: https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks | |
name: CI Check | |
on: | |
push: | |
branches-ignore: | |
- 'renovate/**' | |
pull_request: | |
paths: | |
- 'docs/**' | |
- 'examples/**' | |
permissions: {} | |
jobs: | |
test-dev: | |
if: ${{ github.actor != 'l10nbot' }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
steps: | |
- run: 'echo "No build required"' |