chore(deps): update actions/cache digest to e12d46a - autoclosed #1217
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: Tests | |
on: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 # v4 | |
- uses: ./.github/workflows/setup | |
- run: pnpm lint | |
e2e: | |
needs: [lint] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 # v4 | |
- uses: ./.github/workflows/setup | |
- uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3 | |
if: ${{ !env.ACT }} | |
id: relate-e2e-dbms-cache | |
with: | |
path: 'e2e/relate fixtures/cache/dbmss' | |
key: relate-e2e-dbms-${{ runner.os }} | |
- uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3 | |
if: ${{ !env.ACT }} | |
id: relate-e2e-runtime-cache | |
with: | |
path: 'e2e/relate fixtures/cache/runtime' | |
key: relate-e2e-runtime-${{ runner.os }} | |
- run: pnpm test:setup | |
- run: pnpm test |