From 9955543d4a6643aff3c8d53afc0a86a901b5744d Mon Sep 17 00:00:00 2001 From: Nicolas Vuillamy Date: Sun, 26 May 2024 15:26:44 +0200 Subject: [PATCH] Use npm, not yarn --- .github/workflows/test.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ad8686d..fc6a2a9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,10 +28,7 @@ jobs: registry-url: "https://registry.npmjs.org" # Defaults to the user or organization that owns the workflow file scope: "nvuillam" - - run: yarn - - run: yarn prepack - - run: yarn test -# - name: Submitting code coverage to codecov -# run: | -# ./node_modules/.bin/nyc report --reporter text-lcov > coverage.lcov -# curl -s https://codecov.io/bash | bash + - name: Install dependencies and link + run: npm ci && npm link + - name: Run tests + run: npm run test