Fresh installation #2
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: Fresh installation | |
| on: | |
| schedule: | |
| - cron: '17 4 * * 1' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: fresh-install-${{ github.ref }} | |
| cancel-in-progress: false | |
| jobs: | |
| fresh-install: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| pnpm-version: | |
| - latest-10 | |
| - latest | |
| steps: | |
| # Scheduled workflows are loaded from the default branch, but Leon's | |
| # integration work lands on develop before it reaches a release branch. | |
| - name: Check out Leon | |
| uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.event_name == 'schedule' && 'develop' || github.ref }} | |
| - name: Read Node.js version | |
| id: versions | |
| shell: bash | |
| run: | | |
| echo "node=$(jq -r '.node' bin/node/versions.json)" >> "$GITHUB_OUTPUT" | |
| - name: Use Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ steps.versions.outputs.node }} | |
| package-manager-cache: false | |
| - name: Install pnpm ${{ matrix.pnpm-version }} | |
| shell: bash | |
| run: npm install --global "pnpm@${{ matrix.pnpm-version }}" | |
| - name: Test the interactive installation | |
| env: | |
| LEON_FRESH_INSTALL_API_KEY: xxx | |
| LEON_FRESH_INSTALL_LOG_PATH: /tmp/leon-fresh-install.log | |
| run: node scripts/ci/test-fresh-install.js | |
| - name: Upload installer log on failure | |
| if: failure() | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: fresh-install-log-pnpm-${{ matrix.pnpm-version }} | |
| path: /tmp/leon-fresh-install.log | |
| if-no-files-found: ignore | |
| retention-days: 7 |