Skip to content

rejects clients joining full dkg sessions #8

rejects clients joining full dkg sessions

rejects clients joining full dkg sessions #8

Workflow file for this run

name: Node.js CI
on:
pull_request:
branches:
- '**'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
- name: Install packages
run: yarn --non-interactive --ignore-scripts
# Necessary since `--frozen-lockfile` does not work properly in yarn 1.x.
# https://github.com/yarnpkg/yarn/issues/5840
- name: Check for lockfile changes
run: |
if [[ $(git status | grep yarn.lock) ]]; then
echo "yarn.lock has outstanding updates, please check them in."
exit 1
fi
- name: Lint
run: yarn lint