Skip to content

build(deps): bump ws from 7.5.6 to 7.5.10 #804

build(deps): bump ws from 7.5.6 to 7.5.10

build(deps): bump ws from 7.5.6 to 7.5.10 #804

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn --frozen-lockfile --prefer-offline
- name: Lint commit message
run: yarn commitlint --from=HEAD~1
- name: Lint packages
run: yarn lint
- name: Test packages
run: yarn test