Skip to content

build(deps-dev): bump rollup from 4.27.4 to 4.28.0 #64

build(deps-dev): bump rollup from 4.27.4 to 4.28.0

build(deps-dev): bump rollup from 4.27.4 to 4.28.0 #64

Workflow file for this run

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