Skip to content

chore(deps): bump dependabot/fetch-metadata from 1.6.0 to 2.0.0 #1272

chore(deps): bump dependabot/fetch-metadata from 1.6.0 to 2.0.0

chore(deps): bump dependabot/fetch-metadata from 1.6.0 to 2.0.0 #1272

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 }}