Skip to content

build(deps-dev): bump the typescript-eslint group with 2 updates #2522

build(deps-dev): bump the typescript-eslint group with 2 updates

build(deps-dev): bump the typescript-eslint group with 2 updates #2522

Workflow file for this run

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