Skip to content

chore(deps): bump ws from 6.2.2 to 6.2.3 (#174) #262

chore(deps): bump ws from 6.2.2 to 6.2.3 (#174)

chore(deps): bump ws from 6.2.2 to 6.2.3 (#174) #262

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.14.0]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Linting
run: yarn run lint
- name: Run the tests
run: yarn test
- name: Build
run: yarn build