From 86b89cb501c355e8ad51c8d176e719174c43ede6 Mon Sep 17 00:00:00 2001 From: aminzer Date: Mon, 3 Jul 2023 22:59:41 +0300 Subject: [PATCH] update github actions config --- .github/workflows/node.js.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 41620b0..ac4d291 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -25,6 +25,6 @@ jobs: uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - - run: npm ci - - run: npm run lint - - run: npm test + - run: yarn install --frozen-lockfile + - run: yarn lint + - run: yarn test