build(deps-dev): bump globals from 15.12.0 to 15.13.0 #56
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
node-version-file: .nvmrc | |
- name: Install dependencies | |
run: npm ci --prefer-offline | |
- name: Run server test | |
run: npm run test:server | |
- name: Generate coverage report | |
run: | | |
mkdir -p coverage | |
npx nyc report --reporter=text-lcov > coverage/lcov.info | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Run module tests | |
run: npm run test:esm | |
- name: Run client test | |
uses: coactions/setup-xvfb@v1 | |
with: | |
run: npm run test:client |