Skip to content

chore(deps-dev): bump @types/node from 20.11.5 to 20.11.6 #1210

chore(deps-dev): bump @types/node from 20.11.5 to 20.11.6

chore(deps-dev): bump @types/node from 20.11.5 to 20.11.6 #1210

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/[email protected]
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@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}