Skip to content

chore(deps-dev): bump @commitlint/cli from 19.2.2 to 19.3.0 #1297

chore(deps-dev): bump @commitlint/cli from 19.2.2 to 19.3.0

chore(deps-dev): bump @commitlint/cli from 19.2.2 to 19.3.0 #1297

name: Continuous Integration
on:
push:
branches: [ master ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Start Centrifugo
run: docker run -d -p 8000:8000 centrifugo/centrifugo:latest centrifugo --api_insecure
- name: Install Node v18
uses: actions/setup-node@v4.0.2
with:
node-version: 18
cache: yarn
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run ESlint
run: yarn lint
- name: Run Tests
run: yarn run test --coverage
env:
CENTRIFUGO_HOST: "http://localhost:8000/api"
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}