Try azure AppendBlob #43
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: Live GitHub Actions Cache Test | |
| on: [push, pull_request] | |
| jobs: | |
| tests: | |
| strategy: | |
| matrix: | |
| include: | |
| - node: 20 # LTS | |
| os: ubuntu-22.04 | |
| fail-fast: false | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| WIREIT_LOGGER: 'quiet-ci' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: npm | |
| - uses: google/wireit@gh-cache-v2-action | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npm run test:cache-github-live |