feat: fetch (suspense) cache handling, and next/cache
support
#374
Workflow file for this run
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
name: Pull request checks | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
# This allows a subsequently queued workflow run to interrupt previous runs | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
simple-checks: | |
strategy: | |
matrix: | |
check: | |
[ | |
{ name: formatting, script: 'prettier:check' }, | |
{ name: linting, script: lint }, | |
{ name: type checking, script: types-check }, | |
{ name: building, script: build }, | |
{ name: unit testing, script: 'test:unit' }, | |
] | |
name: ${{ matrix.check.name }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: ./.github/actions/node-setup | |
- name: Cache Turbo | |
uses: ./.github/actions/cache-turbo | |
with: | |
script: ${{ matrix.check.script }} | |
- name: Run Script | |
run: npm run ${{ matrix.check.script }} -- --cache-dir ./turbo-cache | |
e2e-tests: | |
name: e2e tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: ./.github/actions/node-setup | |
- name: Run e2e tests | |
uses: nick-fields/retry@v2 | |
with: | |
max_attempts: 5 | |
timeout_minutes: 10 | |
command: npm run test:e2e -- -- --log-timestamp --wrangler-version=3.1.0 | |
env: | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
CLOUDFLARE_ACCOUNT_ID: ${{ vars.CLOUDFLARE_ACCOUNT_ID }} | |
PROJECT_NAME: ${{ vars.PROJECT_NAME }} |