From 5c726d25727236e94885aa25b2c201fc3c908f55 Mon Sep 17 00:00:00 2001 From: Avery Huang Date: Wed, 13 Sep 2023 16:55:24 -0400 Subject: [PATCH 1/2] update build steps to do yarn run check --- .github/workflows/node.js.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 138dbb43..052608e7 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -26,9 +26,8 @@ jobs: node-version: ${{ matrix.node-version }} - run: yarn install --frozen-lockfile - run: CI= yarn build --if-present - # - run: yarn check # skip this for now since `yarn check` is deprecated + - run: yarn check - run: yarn test - - name: Coveralls uses: coverallsapp/github-action@master with: From 8bf5d07118300af069ce8ade2c54746591db5ca8 Mon Sep 17 00:00:00 2001 From: Avery Huang Date: Wed, 13 Sep 2023 16:56:34 -0400 Subject: [PATCH 2/2] proper check command --- .github/workflows/node.js.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 052608e7..fc1886b7 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -26,7 +26,7 @@ jobs: node-version: ${{ matrix.node-version }} - run: yarn install --frozen-lockfile - run: CI= yarn build --if-present - - run: yarn check + - run: yarn run check - run: yarn test - name: Coveralls uses: coverallsapp/github-action@master