build(deps-dev): bump rollup from 4.25.0 to 4.26.0 #3023
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: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
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 ESLint | |
run: npm run lint | |
- name: Type check | |
run: npm run lint:tsc | |
- 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: Codecov | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- name: Run module tests | |
run: npm run test:esm | |
- name: Run client test | |
uses: GabrielBB/xvfb-action@v1 | |
with: | |
run: npm run test:client | |
- name: Build artifacts | |
run: npm run build |