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