From 1e19d20678e53039002e5b168c910dd5f40db284 Mon Sep 17 00:00:00 2001 From: Peter Mbanugo Date: Fri, 22 Jul 2022 18:06:45 +0200 Subject: [PATCH] build: update ci script --- .github/workflows/ci.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2006df9..2de53ed 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,9 +11,10 @@ jobs: node-version: - 16 steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - - run: npm install - - run: npm test + - run: yarn + - run: cd test + - run: yarn run test