CI #173
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| schedule: | |
| # Run nightly at 00:00 UTC (equivalent to CircleCI's nightly job) | |
| - cron: '0 0 * * *' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| target: [react, angular, vue, react-native] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: 20 | |
| - uses: utooland/setup-utoo@v1 | |
| - name: Run ut install | |
| id: ut_install | |
| run: ut install --ignore-scripts | |
| # continue-on-error: true | |
| # - name: Upload utoo logs on failure | |
| # if: steps.ut_install.outcome == 'failure' | |
| # uses: actions/upload-artifact@v4 | |
| # with: | |
| # name: utoo-logs | |
| # path: /tmp/utoo-*.log | |
| # if-no-files-found: warn | |
| # - name: Fail job if ut install failed | |
| # if: steps.ut_install.outcome == 'failure' | |
| # run: | | |
| # echo "ut install failed — failing job after uploading logs" | |
| # exit 1 | |
| - run: ut icons:generate && ut icons:build | |
| - run: ut icons:test | |
| - id: ut_ci | |
| run: ut ${{ matrix.target }}:ci | |
| # - name: Upload package-lock.json on ut ci failure | |
| # if: failure() && steps.ut_ci.outcome == 'failure' | |
| # uses: actions/upload-artifact@v4 | |
| # with: | |
| # name: package-lock-${{ matrix.target }} | |
| # path: '**/package-lock.json' | |
| # if-no-files-found: warn |