Skip to content

Testing PR test workflow #1

Testing PR test workflow

Testing PR test workflow #1

Workflow file for this run

name: "Run Tests"
on:
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
matrix:
node-version: [ 20 ]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/run-tests
with:
node-version: ${{ matrix.node-version }}