From 086bda763b7507062f29edd8d4d5fc66a5151ed0 Mon Sep 17 00:00:00 2001 From: thednp Date: Wed, 29 Nov 2023 22:30:26 +0200 Subject: [PATCH] 4 --- .github/workflows/ci.yml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f3a5268..a7d3f92 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,22 +6,19 @@ jobs: name: Test on Node 16 steps: - name: Checkout - uses: actions/checkout@v2 - - - uses: pnpm/action-setup@v2.2.2 + uses: actions/checkout@v3 - name: Setup Node uses: actions/setup-node@v3 with: node-version: 16 - cache: pnpm # - uses: bahmutov/npm-install@v1 - - run: pnpm install --no-frozen-lockfile - - run: pnpm build - - run: pnpm compile - - run: pnpm test + - run: npm install + - run: npm run build + - run: npm run compile + - run: npm run test - name: Upload coverage report on Node 16 to coveralls.io... - uses: coverallsapp/github-action@master + uses: coverallsapp/github-action@v1.1.2 with: - github-token: ${{ secrets.GITHUB_TOKEN }} + github-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file