Bump Aiken's uplc dependency above 1.1.19 #1463
Workflow file for this run
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: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| TURBO_SCM_BASE: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.sha || github.event.before }} | |
| VITE_BLOCKFROST_KEY: ${{ secrets.VITE_BLOCKFROST_KEY }} | |
| VITE_MAESTRO_KEY: ${{ secrets.VITE_MAESTRO_KEY }} | |
| VITE_MAESTRO_KEY_PREPROD: ${{ secrets.VITE_MAESTRO_KEY_PREPROD }} | |
| VITE_SEED: ${{ secrets.VITE_SEED }} | |
| VITE_API_URL: ${{ secrets.VITE_API_URL }} | |
| VITE_KUPO_KEY: ${{secrets.VITE_KUPO_KEY}} | |
| VITE_OGMIOS_KEY: ${{secrets.VITE_OGMIOS_KEY}} | |
| VITE_BLOCKFROST_API_URL_PREPROD: ${{secrets.VITE_BLOCKFROST_API_URL_PREPROD}} | |
| VITE_BLOCKFROST_API_URL_PREVIEW: ${{secrets.VITE_BLOCKFROST_API_URL_PREVIEW}} | |
| VITE_BLOCKFROST_KEY_PREPROD: ${{secrets.VITE_BLOCKFROST_KEY_PREPROD}} | |
| VITE_BLOCKFROST_KEY_PREVIEW: ${{secrets.VITE_BLOCKFROST_KEY_PREVIEW}} | |
| VITE_WALLET_SEED: ${{secrets.VITE_WALLET_SEED}} | |
| VITE_WALLET_SEED_2: ${{secrets.VITE_WALLET_SEED_2}} | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| filter: blob:none | |
| - name: Cache turbo build setup | |
| uses: actions/cache@v4 | |
| with: | |
| path: .turbo | |
| key: ${{ runner.os }}-turbo-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-turbo- | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node.js environment | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: "pnpm" | |
| - run: pnpm i | |
| - run: pnpm run build | |
| - run: pnpm run lint | |
| - run: pnpm run format-check | |
| - run: pnpm turbo run test --affected --env-mode=loose |