From b9fcc01643358c49cb75dcab683bf5a607aa81fb Mon Sep 17 00:00:00 2001 From: Luca Ongaro Date: Thu, 18 Jul 2024 16:02:57 +0200 Subject: [PATCH] Debug workflow on GitHub Actions --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6c347080..1638ef8b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,12 +22,15 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 'latest' + node-version: '21' cache: 'yarn' - name: Install dependencies run: yarn install --frozen-lockfile + - name: Debug scripts + run: yarn run + - name: Run tests run: yarn test