From af06f50d098f4914c3487efb609f3f3bd5914c81 Mon Sep 17 00:00:00 2001 From: mister-ben Date: Fri, 12 Apr 2024 12:06:35 -0400 Subject: [PATCH] chore: update GitHub Actions version and remove xvfb (#8682) * uncovered change to a file * update codecov action * revert temp test change * bump other action versions * remove xvfb action --- .github/workflows/ci.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index efa2194cf..c61b30ecc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: should-skip-job: ${{steps.skip-check.outputs.should_skip}} steps: - id: skip-check - uses: fkirc/skip-duplicate-actions@v5.3.0 + uses: fkirc/skip-duplicate-actions@v5.3.1 with: github_token: ${{github.token}} @@ -30,7 +30,7 @@ jobs: runs-on: ${{matrix.os}} steps: - name: checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: read node version from .nvmrc run: echo "NVMRC=$(cat .nvmrc)" >> $GITHUB_OUTPUT @@ -47,7 +47,7 @@ jobs: run: pulseaudio -D - name: setup node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: '${{steps.nvm.outputs.NVMRC}}' cache: npm @@ -61,12 +61,10 @@ jobs: run: npm i --prefer-offline --no-audit - name: run npm test - uses: coactions/setup-xvfb@v1 - with: - run: npm run test + run: npm run test - name: coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: token: ${{secrets.CODECOV_TOKEN}} files: './test/dist/coverage/coverage-final.json'