Skip to content

Bump ws from 7.5.9 to 7.5.10 #86

Bump ws from 7.5.9 to 7.5.10

Bump ws from 7.5.9 to 7.5.10 #86

Workflow file for this run

name: Continous Integration
on:
# trigger the workflow on push or pull request, but only for the master branch
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Lint
run: yarn lint
- name: Test
run: yarn test --coverage --silent
- name: Build
run: yarn build
- name: Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}