From 45d391213092f69f0cfda5b9633c86ce5d04fa46 Mon Sep 17 00:00:00 2001 From: Rolazo Date: Mon, 22 Jul 2024 14:26:25 -0500 Subject: [PATCH] Fixing staging pipeline --- .github/workflows/staging-pipeline.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/staging-pipeline.yml b/.github/workflows/staging-pipeline.yml index da3029d..aca68a2 100644 --- a/.github/workflows/staging-pipeline.yml +++ b/.github/workflows/staging-pipeline.yml @@ -41,15 +41,17 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: 18.14.0 + node-version: 20.14.0 + - name: Install Yarn + run: npm install -g yarn - name: Install dependencies - run: npm ci + run: yarn install - name: Run linter - run: npm run lint + run: yarn lint - name: Run migrations - run: npm run db:migrate:run:test + run: yarn db:migrate:run:test - name: Run tests - run: npm run test + run: yarn test publish: needs: test