Skip to content

chore(deps): pin dependencies #1245

chore(deps): pin dependencies

chore(deps): pin dependencies #1245

Workflow file for this run

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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # 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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- uses: ./.github/workflows/setup
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
if: ${{ !env.ACT }}
id: relate-e2e-dbms-cache
with:
path: 'e2e/relate fixtures/cache/dbmss'
key: relate-e2e-dbms-${{ runner.os }}
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
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