From 7c1eff8f4dd061992ef9135ce5a9ecfe02abc5f2 Mon Sep 17 00:00:00 2001 From: Max Scholz Date: Thu, 27 Jun 2024 14:46:47 +0200 Subject: [PATCH] updated workflows --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b62a70b..4edbe40 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,6 +1,6 @@ name: CI Tests env: - NODE_VERSION: 20 + NODE_VERSION: 14 on: push: paths-ignore: @@ -8,7 +8,7 @@ on: jobs: executing-tests: - runs-on: ubuntu-22.04 + runs-on: ubuntu-20.04 steps: - name: Checkout repository @@ -17,7 +17,7 @@ jobs: persist-credentials: false - name: Use Node.js Version - uses: actions/setup-node@v4 + uses: actions/setup-node@v3 with: node-version: ${{ env.NODE_VERSION }} registry-url: 'https://npm.pkg.github.com/' @@ -43,4 +43,4 @@ jobs: - name: Run Tests working-directory: samples/weather-forecast - run: yarn test + run: yarn test \ No newline at end of file