chore(deps): update typescript dependencies #1179
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@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3 | |
- 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@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3 | |
- uses: ./.github/workflows/setup | |
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # 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@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # 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 |