Skip to content

Commit

Permalink
chore: update GitHub Actions version and remove xvfb (#8682)
Browse files Browse the repository at this point in the history
* uncovered change to a file

* update codecov action

* revert temp test change

* bump other action versions

* remove xvfb action
  • Loading branch information
mister-ben authored Apr 12, 2024
1 parent ee07382 commit af06f50
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
should-skip-job: ${{steps.skip-check.outputs.should_skip}}
steps:
- id: skip-check
uses: fkirc/[email protected].0
uses: fkirc/[email protected].1
with:
github_token: ${{github.token}}

Expand All @@ -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
Expand All @@ -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
Expand All @@ -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'
Expand Down

0 comments on commit af06f50

Please sign in to comment.