Skip to content

Commit

Permalink
ci: upgrade regression pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
naiyerasif committed Dec 5, 2023
1 parent 39bfa04 commit d74f3af
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,24 @@ on:
jobs:
regression:
runs-on: ubuntu-latest

steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v2

- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: 8

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: 20
cache: 'pnpm'

- name: Install dependencies
run: npm install
run: pnpm install --frozen-lockfile

- name: Run the tests
run: npm test
run: pnpm test

0 comments on commit d74f3af

Please sign in to comment.