Skip to content

chore(deps): update actions/checkout action to v4 #1120

chore(deps): update actions/checkout action to v4

chore(deps): update actions/checkout action to v4 #1120

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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # 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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
- 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